Why does this not work - Simple Matlab?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
The following creates a matrix, then breaks it into lines, so that I can send each line as a vector to a function. I dont know if this is the best way, but it seems to work (Generally) However if any of the values in the matrix (array) are greater than 9, i.e double figures, it causes an error. Why? and what is there to fix it.
Thanks Guys
Alex
clear
array = [1,2,3;4,5,6;7,8,9]
openb=('[');
closeb = (']');
for ii = 1:length(array);
vv = sprintf('%s',num2str(array(ii,:)))
finalstring(ii,:) = strcat(openb,vv, closeb)
% finalnums(ii,:) = str2num(finalstring(ii,:));
% varargin{ii} = finalnums(ii,:);
end
0 Kommentare
Antworten (1)
Walter Roberson
am 23 Jun. 2011
That is definitely not a recommended way to proceed. Consider
output = arrayfun(@(K) YourFunction(array(K,:)), 1:size(A,1));
3 Kommentare
Walter Roberson
am 23 Jun. 2011
Your a has rows that are three columns wide, but what gets sent to your function has to be 2 columns wide per vector ?? Is it a single call to allcomb() with as many arguments as can be pulled out in pairs from A, or is it a limit or 3 pairs? If it is a limit of 3 pairs, then does the second call to allcomb "slide" the pairs over, e.g., allcomb([3 4],[5 6],[7 8]) ?
You have 11 values in the array; you cannot divide that up in to pairs without missing one of the values, not unless each one should slide by one, e.g., allcomb([2 3],[4 5],[6 7]) and so on until the end of the list ??
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!