help with label
이전 댓글 표시
hello, i have a trouble with using labels, xlabel and ylabel when plotting a graph.
i get this fellowing message: Error in ==> Untitled6 at 6 xlabel('t-verdi')
댓글 수: 3
Wayne King
2011년 10월 19일
please provide more of the code. There's nothing per se about xlabel('t-verdi') that should throw an error
peri
2011년 10월 19일
Daniel Shub
2011년 10월 19일
What is the error message?
채택된 답변
추가 답변 (2개)
Wayne King
2011년 10월 19일
Have you copied in pasted your code from some Windows application where ' is not the single quote that MATLAB expects?
t = 0 : 0.1 : 4;
y = 1 + exp( - 0.05 * t.^2);
plot(t, y)
axis( [ 0 4 0 3 ] )
xlabel('t-verdi')
ylabel('y-verdi' )
title('Utvikling av . . . ' )
text( 2, 2.5, 'Grafen laget 12.12.01')
gtext('Grafen er laget ved MATLAB');
If you copy your code above into the MATLAB editor, you'll see that the single quotes do not appear properly. They will appear as read apostrophes and the string is not correct for MATLAB.
댓글 수: 2
Wayne King
2011년 10월 19일
copy and paste the code I've entered. I've corrected your single quotes.
peri
2011년 10월 20일
Daniel Shub
2011년 10월 19일
0 개 추천
What type of single quotes are you using? It could be the code formating in my browser, but your quotes look funky.
카테고리
도움말 센터 및 File Exchange에서 Performance and Memory에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!