how to write this in matlab???? and plot graph between y and x;

조회 수: 1 (최근 30일)
Mithun Routh
Mithun Routh 2018년 9월 11일
댓글: Walter Roberson 2018년 9월 12일
z=2;
y=0.5-0.00167(z-2)sin(π(x+0.1)/(18.5-0.3(z-2) ))-0.00184(x-3)(z-2)
  댓글 수: 8
Mithun Routh
Mithun Routh 2018년 9월 11일
y=(0.5-0.00167.*(3-2)).*sin((pi.*(x+0.1)/(18.5-0.3.*(3-2))))-0.00184.*(x-3).*(3-2); for z=3, still it is showing error
PromoCodeBSJ
PromoCodeBSJ 2018년 9월 11일
편집: PromoCodeBSJ 2018년 9월 11일
what is x? you need to define x. on my machine it works fine

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

채택된 답변

PromoCodeBSJ
PromoCodeBSJ 2018년 9월 11일
편집: Walter Roberson 2018년 9월 11일
x=1:10
z=1
y=(0.5-0.00167.*(3-2)).*sin((pi.*(x+0.1)/(18.5-0.3.*(3-2))))-0.00184.*(x-3).*(3-2);
Copy and paste this
  댓글 수: 2
Mithun Routh
Mithun Routh 2018년 9월 12일
thanks sir for ur help @ walter Roberson
Walter Roberson
Walter Roberson 2018년 9월 12일
It was PromoCodeBSJ who provided the solution; I just reformatted it to look nicer.

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by