i need such matlab command which took the sequence of previous matrix and use it for the next matrix?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
a=IVals; p=sortrows(a) disp('SPT sequence is') disp(p) from here i need a command which took the sequence of 'p' and use it for the processing times in my code.please help me out of this.(urgent)
Antworten (1)
Wayne King
am 2 Mär. 2014
What do you mean by "take the sequence of 'p' and use it..."
A = randn(10,10);
p = sortrows(A);
You have the matrix p, you can use that as an input to your code. Write a function that takes p as an input. Or, simply run a script that access the variable p in the command window.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Statistics and Machine Learning 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!