Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

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.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top