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.

to solve equation using matlab

Status
Not open for further replies.

shenba

Newbie level 2
Joined
Jan 18, 2010
Messages
2
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Location
madurai
Activity points
1,292
ωΛ4-1952.1ω²+548880=0 to spove this equation i need matlab coding
 

I don't really get what you are asking but if it representing this equation as matlab code that here it is:

output = omega.^4 - 1.952.1*omega.^2 + 548880

output == 0

If the answer is 1, equation proved

Note: the program will work when omega is a scalar or a vector

the test condition when it is a vector can be given as

sum(output) == 0
 

the matlab command is "roots":

roots([1 0 -1.952 0 548880])

ans =

-19.259288149555253 +19.233933035850992i
-19.259288149555253 -19.233933035850992i
19.259288149555260 +19.233933035850999i
19.259288149555260 -19.233933035850999i

I hope it helps!
 

"ωΛ4-1952.1ω²+548880=0 to spove this equation i need matlab coding"

Substitute u = ω²

u^2 -1952.1u + 548880=0 ; Now its quadratic

Is there more to this question?
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top