matrix column vectors, and its elements?
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
IF I have this column vectors,as example
A=[0;1;2;3;4;5;6;7;8;9;10];
how can rearrangement its like thas,
A=[5;6;7;8;9;10;0;1;2;3;4] to plot its again?
but my column vectors have length(32)with zero pading become(512)
0 commentaires
Réponse acceptée
Andrei Bobrov
le 10 Déc 2013
Modifié(e) : Andrei Bobrov
le 10 Déc 2013
circshift(A,size(A,1)/2+1)
3 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Surface and Mesh Plots dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!