Filter löschen
Filter löschen

returning an empty array if statement

21 Ansichten (letzte 30 Tage)
Aadam
Aadam am 11 Dez. 2011
Hi there I am kinda new to programming.
I am attempting to solve a question which is checking if 2 fields are empty and if they are return an empty array:
for example if I wanted to calculate the third side of a tiangle as long as a and b were present i could calculate c. if a or c are = 0 then I would need to return an empty array. so far I have:
if a && b == 0
not much I know but its a start haha
  1 Kommentar
Aadam
Aadam am 11 Dez. 2011
>if a or c are = 0<
sorry a and b are 0

Melden Sie sich an, um zu kommentieren.

Antworten (2)

Image Analyst
Image Analyst am 11 Dez. 2011
if isempty(a) || isempty(c)
yourOutputArg = [];
return;
end
% else continue with the rest of your function's code.

Walter Roberson
Walter Roberson am 11 Dez. 2011
Looks like Aadam doesn't really mean "empty" for a and b.
if a == 0 || b == 0
This could also be coded as
if any([a,b]==0)
or, more obscurely,
if ~all([a,b])

Kategorien

Mehr zu Creating and Concatenating Matrices 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