Pairwise matrix creation in matlab
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Haritha
le 31 Oct 2018
Réponse apportée : Stephen23
le 31 Oct 2018
Hi,
i have a row matrix =[1 2 3] and a column matrix as [1;2;3]
I want the output as attached in the image
Please let me know if you know this
Thanks in advance
0 commentaires
Réponse acceptée
Plus de réponses (1)
Stephen23
le 31 Oct 2018
>> R = [1,2,3];
>> C = [1;2;3];
>> C./R
ans =
1.00000 0.50000 0.33333
2.00000 1.00000 0.66667
3.00000 1.50000 1.00000
0 commentaires
Voir également
Catégories
En savoir plus sur Get Started with MATLAB 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!