Matlab coding issue with "fprintf" function

조회 수: 10 (최근 30일)
Adam Scott
Adam Scott 2021년 2월 4일
댓글: Star Strider 2021년 2월 5일
Hi, i am trying to print the output of my code into columns and now the results print but not in their respective columns. It prints from the first value of my first variable to its last, then the 1st value of my 2nd variable to its last, etc. I want them to print in their respective columns like the example below.
x v a
-------------
x1 v1 a1
x2 v2 a2
x3 v3 a3
but what i obtain is
x v a
-------------
x1 x2 x3
v1 v2 v3
a1 a2 a3
this is my code

채택된 답변

Star Strider
Star Strider 2021년 2월 4일
My version of MATLAB will not run images of code, only actual code, and I have no desire to type all of that in.
See if:
fprintf('%-4.2f %-42.f %-4.2f %-4.2f', output.')
does what you want. (Note the transposition: (.') for complex data or (') otherwise.)
  댓글 수: 11
Adam Scott
Adam Scott 2021년 2월 5일
Your solution is working. The error was on my side.
Thank you for your time and support. It is really appreciated.
Star Strider
Star Strider 2021년 2월 5일
As always, my pleasure!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Type Identification에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by