Why does this not work - Simple Matlab?
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
Walter Roberson
2011-6-23
That is definitely not a recommended way to proceed. Consider
output = arrayfun(@(K) YourFunction(array(K,:)), 1:size(A,1));
3 个评论
Walter Roberson
2011-6-23
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 ??
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!