i have a column matrix [23; 34;22;13]. i need to create set of column matrixs ,which give 1 and -1 in numbers if the next number is less than and larger than.
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
shashika iresh
il 2 Ott 2016
Commentato: shashika iresh
il 4 Ott 2016
A=[23; 34;22;13] output matrixs=[1;-1;-1],[-1,-1],[-1]
0 Commenti
Risposta accettata
Più risposte (1)
Atsushi Ueno
il 2 Ott 2016
Modificato: Atsushi Ueno
il 3 Ott 2016
I have modified the last answer after getting your comment.
A = [23; 34; 22; 13];
B = sign(diff(A));
matrixs = {0};
for i = numel(B):-1:1
matrixs = {B(i:end), matrixs{:}};
end
0 Commenti
Vedere anche
Categorie
Scopri di più su Resizing and Reshaping Matrices in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!