Error in Y label

조회 수: 4 (최근 30일)
Cy'an Tebo
Cy'an Tebo 2021년 3월 2일
편집: Jan 2021년 3월 2일
So I was trying to make graph for my homework assignment on Matlab online version using this code:
% disp("HM Problem 3")
disp("f1(x)")
x=[-5,0.5,5];
y=(2*x).^3-(3*x)+2;
plot(x,y);
grid on;
legend({'f(x)=2x^3-3x+2'},'fontsize',10)
xlabel('Input Values','fontsize',10)
kylabel('Value of the function','fontize',10)
title('function 1','fontzie',10)
But when I enter my code is says "Error using matlab.graphics.primitive.Text/set. Unrecognized property fontzize for class tex." and then another error saying "Error in ylabel(line 73) set (h, 'string', string, prvpairs{:});

채택된 답변

Jan
Jan 2021년 3월 2일
편집: Jan 2021년 3월 2일
In the code you have:
kylabel('Value of the function', 'fontize', 10)
title('function 1', 'fontzie', 10)
The error message says:
Unrecognized property fontzize for class tex
Neither "fontize" nor "fontzize" nor "fontzie" are correct, but "fontsize".
But maybe it is a typo in the forum only. The "kylabel" is surprising also.
Please copy&paste the code and the complete error message.

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by