How can I show to column vectors side by side?

조회 수: 23 (최근 30일)
fatima Alnaqbi
fatima Alnaqbi 2016년 12월 9일
편집: KSSV 2016년 12월 9일
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