Hey guys, please i need help on how to validate a vector using a while loop

1 visualizzazione (ultimi 30 giorni)
%for example a vector x with values greater than 0, and length of 3
x>0;
length(x)=3;

Risposte (1)

Elias Gule
Elias Gule il 1 Nov 2018
isValid = all(x>0) && length(x)==3;

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by