i have "Error in state of SceneNode. String scalar or character vector must have valid interpreter" Please help me to solve it T-T
조회 수: 21 (최근 30일)
이전 댓글 표시
title("Trường hướng và nghiệm cho y' = 4y(1-y)\sin(10x)", "FontSize", 10);
xlabel('x'); ylabel('y');
axis([-2 2 -1 2]);
grid on;
legend('Trường hướng', 'Đường nghiệm', 'Location', 'NorthWest');
hold off;
댓글 수: 0
답변 (1개)
Walter Roberson
2025년 11월 25일 6:18
The TeX interpreter does not support any of the trig functions.
Furthermore, you coded \sin(10x) instead of \sin{10x}
In order to use \sin you would need to use LaTeX interpreter. Unfortunately, you are using UTF-8 characters such as
'ư'+0
and LaTeX interpreter does not support UTF-8 characters.
About all you can do is convert the \sin(10x) to sin(10x) (possibly including the space)
title("Trường hướng và nghiệm cho y' = 4y(1-y) sin(10x)", "FontSize", 10);
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 LaTeX에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

