Vector inside another vector

2 Ansichten (letzte 30 Tage)
José Campelo
José Campelo am 21 Mai 2019
Kommentiert: madhan ravi am 21 Mai 2019
Hi! I have a vector S = [0 1 2 3 4 ... 30]' and now i want to create another vector U that is equal to 0 if K<S and equal to S if K>=S. In my exercise K=15.
I did this:
U1=zeros(30,1);
U1(15,30)=S;
Can you please help me? Thanks
  3 Kommentare
Alex Mcaulley
Alex Mcaulley am 21 Mai 2019
Your problem is not difficult. You just need to take a look to logical indexing in Matlab. For example:
José Campelo
José Campelo am 21 Mai 2019
Correct. Basically what I want is that U be a column with 0 until the 14th position and then 15, 16, 17 etc until 30.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Adam Danz
Adam Danz am 21 Mai 2019
S =(0:30)';
k = 15;
U = S .* (S>=k);

Weitere Antworten (1)

madhan ravi
madhan ravi am 21 Mai 2019
Bearbeitet: madhan ravi am 21 Mai 2019
People don’t do homeworks here. Index K>=S to U1 lhs and S rhs by equating against each other. Since it’s your homework see Alex’s links above and experiment.
  2 Kommentare
Adam Danz
Adam Danz am 21 Mai 2019
My homework detectors didn't go off on this one.
madhan ravi
madhan ravi am 21 Mai 2019
XD sometimes it doesn’t even in mine, maybe a bug xd.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu 2-D and 3-D Plots 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