how to plot cell array and how to get its imaginary part?
1 view (last 30 days)
Show older comments
hi there
if each cell has two components an i just want one of them to be plotted waht should I do?
and how i could get its imaginary part only?
0 Comments
Accepted Answer
dpb
on 24 Apr 2021
Use cell indexing expressions--
>> c={[rand(4,1),rand(4,1)]}; % presume the format described for some sample data
>> c{:} % the cell content
ans =
0.94 0.61
0.46 0.56
0.98 0.29
0.20 0.79
>> c{:}(:,2) % return column 2 only
ans =
0.61
0.56
0.29
0.79
>>
See the doc for details on addressing cell arrays @
<https://www.mathworks.com/help/matlab/matlab_prog/access-data-in-a-cell-array.html>
2 Comments
dpb
on 25 Apr 2021
Edited: dpb
on 25 Apr 2021
"i did it but there is no answer and i got error"
What, specifically, was "it" and what was the error? Can't see your terminal from here and the crystal ball is back in the shop for repairs (yet again)...
And, of course, I guessed at what your original Q? was actually describing so show us what you actually have and had tried before if you hope for any meaningful answers.
More Answers (0)
See Also
Categories
Find more on Logical 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!