Effacer les filtres
Effacer les filtres

Horzcat error, attempting to display a matrix 3x11

2 vues (au cours des 30 derniers jours)
olivia
olivia le 13 Sep 2023
Commenté : Dyuman Joshi le 13 Sep 2023
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.

Réponse acceptée

Dyuman Joshi
Dyuman Joshi le 13 Sep 2023
R=[148;36;49;-45;166] % 5x1 double
R = 5×1
148 36 49 -45 166
Rvx= [1 zeros(1,2*numel(R)); 0 cos(R)' sin(R)'; 0 -sin(R)' cos(R)']
Rvx = 3×11
1.0000 0 0 0 0 0 0 0 0 0 0 0 -0.9410 -0.1280 0.3006 0.5253 -0.8755 -0.3383 -0.9918 -0.9538 -0.8509 0.4833 0 0.3383 0.9918 0.9538 0.8509 -0.4833 -0.9410 -0.1280 0.3006 0.5253 -0.8755
  2 commentaires
olivia
olivia le 13 Sep 2023
is there a way to shrink the output so it doesn't display as columns 1-9 & 10-11
Dyuman Joshi
Dyuman Joshi le 13 Sep 2023
I don't understand what you mean.
Could you elaborate more?

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays dans Help Center et File Exchange

Produits


Version

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by