How to separate all negative and all positive values of a vector?
81 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Sergey Dukman
il 23 Set 2015
Commentato: Brice Arthur Azangue
il 17 Giu 2023
Hello, I baffled by one task in Matlab, namely I need to create two vectors that contains all positive and all negative values of an initial vector. I would like to get a general answer to my question. Here is my script (unfinished): for i=1:numel(x) if x(i) > 0 & x(i)==0 P(i)=????????(all positives) end end disp('The postive vector is:')
Sergey
0 Commenti
Risposta accettata
Stephen23
il 23 Set 2015
Modificato: Stephen23
il 23 Set 2015
>> X = [1,2,-3,-4,5,-6,7,-8,9];
>> idx = X<0; % create logical index
>> neg = X(idx)
neg =
-3 -4 -6 -8
>> pos = X(~idx)
pos =
1 2 5 7 9
5 Commenti
Walter Roberson
il 20 Mar 2023
Do we understand correctly that there should be 11 different outputs?
- element in first vector and second vector are both positive
- element in first vector is positive, element in second vector is zero
- element in first vector is positive, element in second vector is negative
- element in first vector is zero, element in second vector is positive
- element in first vector is zero, element in second vector is zero
- element in first vector is zero, element in second vector is negative
- element in first vector is negative, element in second vector is positive
- element in first vector is negative, element in second vector is zero
- element in first vector is negative, element in second vector is negative
- element exists in first vector but you have run out of elements in the second vector
- element exists in second vector but you have run out of elements in the first vector
Or should the cases where you have run out of elements in one of the vectors each be split into the negative / zero /positive, leading to a total of 15 different cases?
Più risposte (1)
RAM MANOHAR
il 23 Lug 2019
I have used for , if --else loops but i have got positive and 0 in place of negative.
2 Commenti
Narendra Kintali
il 23 Set 2022
Hi Ram,
I even got zeros in the place of negative numbers.
How did you fix your code.
Walter Roberson
il 23 Set 2022
Vedere anche
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!