Filter löschen
Filter löschen

scaling a vector from 352800x1 to 300000x1 by cutting last 52800 row elements?

1 Ansicht (letzte 30 Tage)
i have a 352800x1 vector . now i want to take only 300000 row elements .how can i cut last 352800-300000=52800 elements and make it a 300000x1 vector ??

Akzeptierte Antwort

Jonathan Sullivan
Jonathan Sullivan am 12 Feb. 2013
x = rand(352800,1);
x(300001:end) = [];
size(x)

Weitere Antworten (0)

Kategorien

Mehr zu MATLAB finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by