How to make vector array value zero after certain index?
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Dear All,
I have an array from Simlunk which is 1001x4.
The first, second, third and fourth colum of array conatins the value of current, voltagee, Irradaince and Temperature.
Let say at index (555,1), the value of current start to becomes negative and keep on going in negative domain.
How do I make the value of current and volatge zero once the current start to get negative i.e. after value of current at (555,1)?
0 Kommentare
Antworten (1)
madhan ravi
am 31 Jan. 2021
Matrix(556 : end, 1 : 2) = 0 % size 1001 X 4
1 Kommentar
madhan ravi
am 31 Jan. 2021
Or:
Matrix(Matrix(:, 1) < 0, 1 : 2) = 0 % size 1001 X 4
Siehe auch
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!