How can I show to column vectors side by side?

22 vues (au cours des 30 derniers jours)
fatima Alnaqbi
fatima Alnaqbi le 9 Déc 2016
Modifié(e) : KSSV le 9 Déc 2016
disp('Magnitude'); fprintf('\b'); disp(' Phase'); Magnitude=abs(I) Phase=(pi\180)*atan2(imag(I),real(I))
Magnitude =
1.1197
0.14003
0.0012574
Phase =
-83.5704
96.4874
-19.6175
how can I show the answers as two beside columns

Réponses (2)

Bjorn Gustavsson
Bjorn Gustavsson le 9 Déc 2016
That should be as simple as:
disp([[1;2;3],[6;4;1]])
HTH

KSSV
KSSV le 9 Déc 2016
Modifié(e) : KSSV le 9 Déc 2016
Mag = rand(3,1) ;
Phase = rand(3,1) ;
[Mag Phase]
or
M = rand(3,1) ; P = rand(3,1) ;
fprintf('Magnitude Phase\n') ;
for i = 1:size(M,1)
fprintf('%f %f\n',M(i),P(i)) ;
end

Catégories

En savoir plus sur Phased Array Design and Analysis 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!

Translated by