How can I show to column vectors side by side?

23 次查看(过去 30 天)
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

回答(2 个)

Bjorn Gustavsson
Bjorn Gustavsson 2016-12-9
That should be as simple as:
disp([[1;2;3],[6;4;1]])
HTH

KSSV
KSSV 2016-12-9
编辑:KSSV 2016-12-9
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

类别

Help CenterFile Exchange 中查找有关 Phased Array Design and Analysis 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by