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!