Create a column vector from 15 to -25 with a step size of 5
45 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I need help with a problem. Create a column vector from 15 to -25 with a step size of 5. This is what I have prob04=[15;5;-25]; and all I get is a column of just 15,5,-25. I'v tried to resolve it.
0 Kommentare
Antworten (2)
Christoph S
am 28 Jul. 2020
An easy way to do this would be
prob04 = 15:-5:25;
If you want to turn it into a column vector you can then just use the transpose operator
prob04 = prob04.';
0 Kommentare
Siehe auch
Kategorien
Mehr zu Linearization 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!