Hi, can anyone help me, how to make this table turn properly?
5 次查看(过去 30 天)
显示 更早的评论

6 个评论
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?
I suggest you to refer TUTORIAL: how to ask a question (on Answers) and get a fast answer - MATLAB Answers - MATLAB Central (mathworks.com) and update the question accordingly
Walter Roberson
2023-11-3
You will either need to use a wider plotting window or else a smaller font.
回答(1 个)
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!
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!