how to read cell in mat file ?
Show older comments
hi, I have ex.mat file which contain value like below
X1 1 2 3
X2 2 3 4
when I using function
load('ex.mat');
the result will give all.
now I only want the result like below
1 2 3
2 3 4
it is possible to do that ?
when I using
result = ex(1,:)
The result only give me 1st row, I want 2nd row include to and all coloum
Any help will be very much appreciated.. thank you
2 Comments
Stephen23
on 6 Nov 2018
@Oman Wisni: please upload your .mat file by clicking the paperclip button.
Oman Wisni
on 6 Nov 2018
Edited: Oman Wisni
on 6 Nov 2018
Accepted Answer
More Answers (0)
Categories
Find more on Cell Arrays 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!