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.

I need some tip in Matlab...

Status
Not open for further replies.

madeza

Member level 4
Joined
Mar 10, 2006
Messages
74
Helped
3
Reputation
6
Reaction score
1
Trophy points
1,288
Location
Arequipa / PERU
Activity points
1,759
I'm solving a sinusoidal power definition, instantaneous power...
I need to get the plot in (a_original), but the plot resulting is (b_pvi)...
is there some thing wrong that I'm doing...?

R=10;
t=0:0.01:0.1;
v=100*sin(377*t);
p=((v.^2)/R);
plot(t,p)
 

I increased resolution to be the folloiwng:
Code:
R=10; 
t=0:0.0001:0.1; 
v=100*sin(377*t); 
p=((v.^2)/R); 
plot(t,p),xlabel('t'),ylabel('p');

and here's result:
 

    madeza

    Points: 2
    Helpful Answer Positive Rating
Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top