Does somebody know how to plot this function?

I have the exercise to plot this function:
I have to use an anonymous function
That's my code until now:
figure; hold on;
y = @(x) tan(3*x) + 5*x-4;
x = linspace(0,180);
plot(x, y(x) ,'c');
axis([0 180 -100 1000]);
title('Funktion y = tan(3x)+5x-4');
xlabel('x-Werte[°]');
ylabel('Funktionswerte');
But I don't know how to get the parts between the tangent
or if my solution is even the right beginning, can somebody help?

 채택된 답변

Voss
Voss 2022년 5월 11일
Use tand rather than tan, because the argument 3*x is in degrees rather than radians.
Increase the number of points to see the asymptotes better. Here I've used 1000 points total.
figure; hold on;
y = @(x) tand(3*x) + 5*x-4;
x = linspace(0,180,1000);
plot(x, y(x) ,'c');
axis([0 180 -100 1000]);

댓글 수: 7

Thanks a lot!!
There's something missing I realize now: There needs to be space between the tands, what can be seen in the original, how do I get them?
Probably the easiest way to do that is to use fplot instead of plot:
figure; hold on;
y = @(x) tand(3*x) + 5*x-4;
fplot(y,[0 180],'c');
axis([0 180 -100 1000]);
How is it possible with plot? It says specificially plot in the exercise
Including the exact values of x where tan(3x) goes to infinity seems to work ok.
figure; hold on;
y = @(x) tand(3*x) + 5*x-4;
x = sort([linspace(0,180,1000) 30:60:180]);
plot(x, y(x) ,'c');
axis([0 180 -100 1000]);
Thank you!!
Voss
Voss 2022년 5월 12일
You're welcome!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Mathematics에 대해 자세히 알아보기

질문:

2022년 5월 11일

댓글:

2022년 5월 12일

Community Treasure Hunt

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

Start Hunting!

Translated by