Student asking for help(simple stuff)

How can I do following in matlab?
1)Draw the graph of the function y = tan (x) / x dotted red in the interval (-3.3) with a hundred points
2)Find the roots of polynomials y =-3x^3+4x^2-x+3
3)Solve the system of equations:
x-y+2z=1
x-2y-z=2
3x-y+5z=3
4) Find a graph of the function y= (xe^-x)/1-e^x,,,,,,,,,on intervale(-5.5) with step 00:01
Any help with this would be highly appreciated, thanks in advance.
Regards.

 채택된 답변

Shashank Prasanna
Shashank Prasanna 2013년 1월 30일
편집: Shashank Prasanna 2013년 1월 30일

0 개 추천

Sounds like an assignment. Please read the getting started guide. And use the doc heavily.
3) Do you want to vizualize? what do you want to do when you say find a graphs? Use plot again just to observe.
Hint for 1:
x = linspace(-3,3,100);
plot(x,tan(x)./x,'r.');

댓글 수: 1

avantic
avantic 2013년 1월 30일
Thanks for your help. This is all I needed ( I know I should google better but w/e now :P ). Regards.

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by