How to make the length/dimension of 6 different 3D vectors the same?
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
alexandra ligeti
le 11 Juin 2021
Commenté : alexandra ligeti
le 11 Juin 2021
I have 6 different vectors, each containing their own independant x, y, z coordinates. I would like to calculate the cross product and so to be able to do that, I need the vectors be the the same dimension. The dimensions of the vectors are as seen in the image below. The longest vector is 852, so I would like the other vectors to be 852 entries in length with the end values being padded with the value of zero to make up the end entires to ensure the length recahes 852. Is there an easy way to do this?
I have tried a for loop but it is not filling the end values of the shorter vectors with zeros and I cant seem to get it to work for more than one vector.
So just to reiterate, I am looking for a method to get all vector dimenstions the same, and where the vector lengths are not equal in length I would like the shorter length vectors to contain zero value entires padded to the end to make up the remaining entires ensuring the length of all vectors is the same as that of the longest vector.
Thank you for your help.
0 commentaires
Réponse acceptée
Joseph Cheng
le 11 Juin 2021
probably the easiest way is to fill a zero array created to be the same max size then populate the indexes with the values:
var1 = rand(100,3);
var2 = rand(50,3);
pmax = max([size(var1,1) size(var2,1)])
Zpad = zeros(pmax,3);
Zvar1 = Zpad;
Zvar2 = Zpad;
Zvar1(1:size(var1),:)=var1;
Zvar2(1:size(var2),:)=var2;
figure,plot(1:pmax,Zvar1,1:pmax,Zvar2,'x')
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Matrix Indexing dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!