suppose i have a vector 'bw' if in there value '0' exist than total value of bw=0 is estimated.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Sun Heat
am 25 Okt. 2018
Kommentiert: madhan ravi
am 25 Okt. 2018
bw=[120 1322 5542 5653 0 0 0 45451]; than bw=0 because zero exist in vector....if bw=[121 5454 24 54 4 5454 545 4654]; than bw=121;
0 Kommentare
Akzeptierte Antwort
madhan ravi
am 25 Okt. 2018
bw=[120 1322 5542 5653 0 0 0 45451]
if any(bw==0)
bw = 0
else
bw=bw(1)
end
1 Kommentar
madhan ravi
am 25 Okt. 2018
the above code demonstrates, if any value is zero in bw it displays zero, if not displays first element of bw
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Get Started with Optimization Toolbox 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!