How can I plot the first 1000 numbers in my matrix?
16 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have a 15364 x 6 matrix and I only want to plot the first 167 rows. How can I transform my 15364x6 into a 167x6 while keeping all the numbers in order?
0 Kommentare
Antworten (2)
Honglei Chen
am 4 Jun. 2018
You can do
y = x(1:167,:)
where x is the original data matrix.
HTH
0 Kommentare
Siehe auch
Kategorien
Mehr zu Resizing and Reshaping Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!