Graphing the sine graph

조회 수: 1 (최근 30일)
Dakalo
Dakalo 2024년 2월 29일
댓글: Les Beckham 2024년 2월 29일
Hey Guys, I am currently learning how to use Matlab and I have a problem that I am struggling with. I am struggling to graph the function y = sin^2(t) on the interval t ∈ [0,2π]. Can you please help me this?
  댓글 수: 5
Dakalo
Dakalo 2024년 2월 29일
@Sam Chak Okay thank you. I will make use of it.
Les Beckham
Les Beckham 2024년 2월 29일
If you are just getting started with Matlab, I would highly recommend that you take a couple of hours to go through the free online tutorial: Matlab Onramp

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

채택된 답변

Alexander
Alexander 2024년 2월 29일
t = linspace(0,2*pi,1000);
y = sin(t).^2;
plot(t,y);
  댓글 수: 5
Alexander
Alexander 2024년 2월 29일
Cheers
Sam Chak
Sam Chak 2024년 2월 29일
@Dakalo, Can you enter the code (click this icon ) and run it here (click this icon )?
A grey field will appear so that you can type out the plotting code. You should also learn about labeling and display trick for repeating decimals such as .

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

추가 답변 (0개)

카테고리

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

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by