How to obtain output from function always as cell array even though it would be of size 1
1 view (last 30 days)
Show older comments
Let's say a function returns a single object or string if there is a single output and a cellarray of them if there are multiple ones e.g. findall() or fullfile(). But this pose a problem if I want to process each output in a for loop because first I need to determine if the output is cellarray or not. Is there a method how to be able to use the following code in all cases, even if N =1 and output be always cell array?
output = findall(...)
for i = 1:N
y = [ output{i} + ...];
end
( a cell array and we dont know in advance what the size will be. In many cases, I dont know in advance how many output parameters a function returns
0 Comments
Answers (1)
Jiri Hajek
on 5 Dec 2022
Hi,
since you are unsure about the type of a variable, you can solve this by adding a condition:
for i = 1:N
if iscell(output)
y = [ output{i} + ...];
else
y = {output}
end
end
2 Comments
Jiri Hajek
on 6 Dec 2022
Well, it was not entirely clear that this is not a beginners question, so sorry for providing just the first available option. Fact is, I've struggled in the past with a similar problem myself and found several implicit types of behaviour that can disturb the expected outcome, exactly as you suggested. In some cases even variable viewer can be misleading, so after some trials Ive concluded that for this problem, the simplest foolproof option is also the best.
See Also
Categories
Find more on Data Type Identification 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!