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.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…