Making a row vector

9 Ansichten (letzte 30 Tage)
Nicholas Deosaran
Nicholas Deosaran am 3 Sep. 2020
Kommentiert: Stephan am 3 Sep. 2020
Hey Everyone,
how would you mak a row vector that goes from 0 to 100 and then back down to 0, by increments of 5?
I know how to make it go from 0 to 100 but back down to 0 by increments of 5 I am lost on.
I think it would of been
v = 0:1:100 , 100: -5: 0
but i'm worng.

Akzeptierte Antwort

Stephan
Stephan am 3 Sep. 2020
v = [0:100 ,100:-5:0]
  2 Kommentare
Nicholas Deosaran
Nicholas Deosaran am 3 Sep. 2020
Thank you I see what I was doing wrong
Stephan
Stephan am 3 Sep. 2020
my pleasure.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

David Hill
David Hill am 3 Sep. 2020
[0:5:100,95:-5:0];

Kategorien

Mehr zu Matrix Indexing 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!

Translated by