Bishwam Pattnaik
Followers: 0 Following: 0
Feeds
질문
Load flow analysis of DFIG not working
Hi, Figure 1 shows the DFIG average model and Figure 2 shows the simulink model of DFIG. When I try to perform load flow analysi...
2년 초과 전 | 답변 수: 0 | 0
0
답변질문
How to find partial derivation for y with respect to x given y has a size of 3 by 300 and x has a size of 2 by 3?
x=rand(2,3); y=rand(3,300); Derivation=diff(y)./diff(x); It didnt work.
대략 3년 전 | 답변 수: 1 | 0
1
답변질문
How to find (x,y) from a matrix of Nx2?
X=[5 6 9 8 4]; Y=[8 7 2 1 9]; L=[X' Y']; Now i need to find (6,7) in that L matrix. If its not there then print 0 but if it ...
3년 초과 전 | 답변 수: 0 | 0
0
답변질문
How to plot left semi_circle in matlab? (Given, x(origin), y(origin) and r(radius) of the circle)?
I was just wandering how to plot left semi circle. given x,y and radius of the circle. For example, x=5, y=10, r=3
4년 초과 전 | 답변 수: 2 | 0
2
답변질문
Searching matrix which contain specific value?
Hi, i got two matrices of same size? lets say i am searching for a particular value? how can i use a counter loop to Return 1 if...
5년 초과 전 | 답변 수: 1 | 0
1
답변질문
how can i find the value of differentiation? that is f'(2)?
f=@(x) x^2- 4 a=diff(f,x) a(2)? .... (i am getting error here)
5년 초과 전 | 답변 수: 1 | 0
1
답변질문
how can i change x to (x+h)?
This is my function, f(x)=x^2 - 4 and f(x+h)=(x+h)^2 - 4 f=@(x) x.^2- 4; f=@(x+h) x.^2- 4 (this gives me error) How can i w...
5년 초과 전 | 답변 수: 2 | 0