How to obtain output from function always as cell array even though it would be of size 1
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (1)
Jiri Hajek
le 5 Déc 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 commentaires
Jiri Hajek
le 6 Déc 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.
Voir également
Catégories
En savoir plus sur Data Type Identification dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!