Hello, I made this call:
idx = spectralcluster(D,1000,'Distance','precomputed');
where size(D) = ~[14k,14k]. I get the error given below. When I greatly reduce the number of clusters (~30), the function runs successfully.
What can I do to get more clusters?
Error using kmeans (line 166)
Invalid data type. The first argument to KMEANS must be a real array.
Error in spectralcluster>clusterEigenvectors (line 191)
idx = kmeans(V,k,'Replicates',5);
Error in spectralcluster (line 179)
labels = clusterEigenvectors(Vnonan,k,clustMethod);