How to access a row elements of a field of a structure
Show older comments
Hi,
I have a structure A and it has three feils f1,f2,f3. f2 have three rows and 10 columns. I want to access row 2 of columns.
I did like this but it give error.
A.f1{2,1}
How to access? kindly help.
2 Comments
per isakson
on 1 May 2020
The value of A.f1 is that a double matrix or a cell array?
Mekala balaji
on 1 May 2020
Answers (1)
per isakson
on 1 May 2020
Assumption: "three rows and 10 columns" refers to a 3x10 double matrix
Try
%%
A.f1 = randi( [0,9], 3, 8 ); % sample data
A.f1( 2, : )
Categories
Find more on Linear Algebra 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!