Q1- In MATLAB, implement a hybrid clustering algorithm which combines hierarchical clustering and k-means clustering. The hybrid algorithm will use hierarchical clustering to produce stable clusters and k-means clustering will initialize seeds based on the centroids of the produced stable clusters ( instead of randomly initialize seeds ).
Source (You should add programmer's comments in your source code to explain the design and insights of the algorithm implemented. For examples, This statement normalizes Iris dataset using z-score; This statement sets linkage measure with minimum distance; These statements initialize seeds in k-means clustering based on the hierarchical clustering results, etc.