Hi, can anyone help me, how to make this table turn properly?

조회 수: 5 (최근 30일)
Afiq Anang
Afiq Anang 2023년 8월 7일
댓글: Walter Roberson 2023년 11월 3일
  댓글 수: 6
Mann Baidi
Mann Baidi 2023년 8월 22일
Stii it is not clear how do we use this matalab-Copy.mat in the function. How to Pass the arguments?
Walter Roberson
Walter Roberson 2023년 11월 3일
You will either need to use a wider plotting window or else a smaller font.

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

답변 (1개)

Mann Baidi
Mann Baidi 2023년 8월 23일
편집: Mann Baidi 2023년 11월 3일
Hi Afiq,
I understand that you are facing issue in resizing the chart/matrix you generated. I suggest you to use the “figure” feature of MATLAB.
You can add the line before calling the plot function:
fig = figure;
Then you can resize the figure using the followiing code:
fig_Position = fig.Position;
fig_Position(3) = fig.Position(3)*1.5;
fig.Position = fig_Position;
Further, you can take help from the following document.
Hope this helps!

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

제품


릴리스

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by