How can I show to column vectors side by side?

22 visualizaciones (últimos 30 días)
fatima Alnaqbi
fatima Alnaqbi el 9 de Dic. de 2016
Editada: KSSV el 9 de Dic. de 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

Respuestas (2)

Bjorn Gustavsson
Bjorn Gustavsson el 9 de Dic. de 2016
That should be as simple as:
disp([[1;2;3],[6;4;1]])
HTH

KSSV
KSSV el 9 de Dic. de 2016
Editada: KSSV el 9 de Dic. de 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

Categorías

Más información sobre Phased Array Design and Analysis en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by