logic question regarding two vectors

2 Ansichten (letzte 30 Tage)
Sami Ahmed
Sami Ahmed am 8 Sep. 2022
Kommentiert: Sami Ahmed am 8 Sep. 2022
The two vectors, x=[0, -4, 7, 0, -1, 2], y=[1, -4, 8, 0, 1, 6] are given. Explain how matlab could reutrn...z = x and (not y)

Antworten (2)

David Hill
David Hill am 8 Sep. 2022
Really have no idea what you are asking.... just guessing
x=[0, -4, 7, 0, -1, 2];
y=[1, -4, 8, 0, 1, 6];
z=min(x,y)
z = 1×6
0 -4 7 0 -1 2
  8 Kommentare
Sami Ahmed
Sami Ahmed am 8 Sep. 2022
i understand, ur like a TA then. I will try to rephrase my questions better.
Sami Ahmed
Sami Ahmed am 8 Sep. 2022
@David Hill @Walter Roberson i was entering z=x&~=y instead of z=x&~y. this was my isse thank you

Melden Sie sich an, um zu kommentieren.


Walter Roberson
Walter Roberson am 8 Sep. 2022
The "or" operation for vectors is written as the | operator.
The "and" operation for vectors is written as the & operator.
The "not" operation for vectors is written as the ~ operator.
Note that for the purpose of MATLAB, a value is considered true if it is non-zero (except that it is an error to apply logical tests directly to NaN values.)

Produkte


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by