Help me write a Matlab program that can plot this function

Status
Not open for further replies.

abei

Newbie level 5
Joined
Feb 3, 2006
Messages
8
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,322
hello
iwant to write the program in matlab that it can be plot(x,y);
0≤x≤600
(.317x)^2=[((1.5/y)+(1.5*y)-(.27*x*y))^2]+[((1.5*y)+(.27*x*y))^2];
can you help me.
thank you
 

Re: matlab program

syms x y
x=sqrt((((1.5/y)+(1.5*y)-(.27*x*y))^2)+(((1.5*y)+(.27*x*y))^2))/.317;
ezplot('y',[0 600])

Added after 3 hours 54 minutes:

it is the same as
 

Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…