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 Center および File ExchangeLogical についてさらに検索

製品


リリース

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by