Horzcat error, attempting to display a matrix 3x11
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
R=[148;36;49;-45;166] % 5x1 double
Rvx= [ 1 0 0; 0 cos(R) sin(R); 0 -sin(R) cos(R)];
The output can have zeros where there is a void. I believe I understand the error but don't know how to fix it.
0 commentaires
Réponse acceptée
Dyuman Joshi
le 13 Sep 2023
R=[148;36;49;-45;166] % 5x1 double
Rvx= [1 zeros(1,2*numel(R)); 0 cos(R)' sin(R)'; 0 -sin(R)' cos(R)']
2 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Logical 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!