Problem regarding vectors and/or matrices

1 view (last 30 days)
I have a data file, which is of 60000x16 dimensions.
Having the data file loaded, I do not know, what the second command does!
load('Example.mat'); data = data(1:15000,6)'; (what does this command do ? )

Accepted Answer

Star Strider
Star Strider on 1 Oct 2015
The line:
data = data(1:15000,6)';
redefines the first 15000 rows of the 6th column of ‘data’ as a (1x15000) row vector, also named ‘data’.
  1 Comment
WAT
WAT on 1 Oct 2015
It also takes the complex conjugate, if your data entries are complex valued.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!