Delete element of an array on the basis of other arrays

1 Ansicht (letzte 30 Tage)
luca
luca am 14 Okt. 2019
Kommentiert: luca am 14 Okt. 2019
Hi given arrays
Y= [175 175 175 175 175 175 175 175 175 175 175 175];
SETT=[178 130 120 140 100 160 179 165 157 140 130 180 140];
and
T = [25 60 50 40 30 30 30 35 10 34 23 45 12];
Considering each column, I want to create a new vector U where I put just the value of T where the element on the saem column of SETT does not exceed the value in Y.
So in this case I want to obtain
U=[60 50 40 30 30 35 10 34 23 12].
May someone helo me with the code?

Akzeptierte Antwort

madhan ravi
madhan ravi am 14 Okt. 2019
U = T(Y>SETT)
  2 Kommentare
madhan ravi
madhan ravi am 14 Okt. 2019
You have asked some advanced questions before, but I have no idea why you were struck in this one. I suggest you to do MATLAB onramp course to understand the basics of MATLAB.
luca
luca am 14 Okt. 2019
thanks for the advice madhan!!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by