How can i convert this string into an input for a function?
Show older comments
Hello, everyone! I have this program:
ch=['MRWI'
'IDMZ'
'CGBI'
'JKNO']
v=[];
[x,y]=size(ch)
for i=1:x
v=[v, 'ch(',num2str(i),',:),']
end
where v will be equal to the string: ''ch(1,:),ch(2,:),ch(3,:),ch(4,:),'. My question is how can i use v as an input for a function? for exemple, to display the values of v as 'MRWI,IDMZ,CGBI,JKNO'
3 Comments
David Hill
on 24 Apr 2021
Why do you want to do that? You should try not to do that if at all possible.
Robu Robert
on 24 Apr 2021
Stephen23
on 25 Apr 2021
As David Hill wrote, you should avoid converting data to character representations of the same data.
As Rik wrote, the correct approach is to use a comma-separated list:
Bruno Luong showed you exactly how here:
Answers (1)
Rik
on 24 Apr 2021
ch=['MRWI'
'IDMZ'
'CGBI'
'JKNO'];
v=ch.';v=v(:).';
disp(v)
2 Comments
Robu Robert
on 24 Apr 2021
Rik
on 25 Apr 2021
Then you need cell2mat, after which you can use {:} to create a comma separated list.
Categories
Find more on Characters and Strings 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!