fnn - I have a question

9 views (last 30 days)
J
J on 22 May 2013
Hi
I use the Matlab code
function [embedm fnn1 fnn2]=fnn(y,maxm)
it can't be solved
In the windows
Error using .^
Out of memory. Type HELP MEMORY for your options.
Error in dist.apply (line 9)
z = sqrt(reshape(sum(bsxfun(@minus,w,p).^2,2),S,Q));
Error in dist.distance (line 5)
d = dist.apply(pos',pos);
Error in dist (line 59)
d = dist.distance(w,varargin{:});
Error in fnn (line 47)
D=dist(EEM(:,1:k)');
How can I solve it?

Accepted Answer

Walter Roberson
Walter Roberson on 22 May 2013
You use smaller matrices, or you upgrade to 64 bit MATLAB with more physical RAM.

More Answers (0)

Categories

Find more on Language Fundamentals in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!