Extract values from a double list
显示 更早的评论
Hi,
I am trying to learn Matlab and I have two questions.
1)How can I extract from the below double the first element (8)?
myList=[8;6;9;0;6;5;4;5;6;7];
2)Also how can I replace this:
1×4 cell array
{'A'} {'B4'} {'G6'} {'D5'}
to this
A -> B4 -> G6 -> D5
Thank you in advance.
1 个评论
myList=[8;6;9;0;6;5;4;5;6;7];
myList(1) % Index posotion
The second question I don't understand, is it a single cell or cells within cell? If you are a beginner, go through MATLAB Onramp
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Cell Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!