create a matrix!
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello I have
row=[1 2];
col=[10 11 13 ];
I want to have b=[10 11 13; 10 11 13]
How can i do that?
1 commentaire
Walter Roberson
le 1 Juin 2012
Please do not Tag specific individuals for a question, as it puts pressure on the named person to answer.
Réponse acceptée
Honglei Chen
le 1 Juin 2012
repmat(col,2,1)
or
repmat(col,numel(row),1)
4 commentaires
Honglei Chen
le 6 Juin 2012
You may want to start a new thread and explain the issue. I'm sure someone here can help.
Plus de réponses (1)
Ryan
le 1 Juin 2012
row = [1 2];
col = [10 11 13];
b = ones(length(row),length(col));
clear m
for m = 1:length(row)
b(m,:) = col;
end
Voir également
Catégories
En savoir plus sur Logical 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!