Community Profile

photo

Light


2013년부터 활동

Followers: 0   Following: 0

연락

1st Iteartion: S12t=6+2*1i; S01t=10+5*1i; U12=110;
R12 = 16.2+24*1i; U0=115; dU01=110;
R01= 15.75+31.2*1i; dx01=106.125;
dx12=81; U20=10; e=0.01;
dQ12=dx12*dU01.^2*10.^-6;
S12i=S12t-complex(0,dQ12);
DS12 =((real(S12i).^2+imag(S12i).^2)/U12.^2)*R12;
S12ii=DS12+S12i;
S12e=S12ii-complex(0,dQ12);
S01i=S12e+S01t;
dQ01=dx01*dU01.^2*10.^-6;
S01ii=S01i-complex(0,dQ01);
DS01=((real(S01ii).^2+imag(S01ii).^2)/U12.^2)*R01;
dQ01i=dx01*U0.^2*10.^-6;
S01ii2=S01ii+DS01;
S01iii=S01ii2-complex(0,dQ01i);
dU01i=(real(S01ii2)*real(R01)+imag(S01ii2)*imag(R01))./U0;
dU01ii=(real(S01ii2)*imag(R01)-imag(S01ii2)*real(R01))./U0;
U1=sqrt((U0-dU01i).^2+dU01ii.^2);
dU12i=(real(S12ii)*real(R12)+imag(S12ii)*imag(R12))./U1;
dU12ii=(real(S12ii)*imag(R12)-imag(S12ii)*real(R12))./U1;
U2=sqrt((U1-dU12i).^2+dU12ii.^2);
And i want it continue to next iteration.
continue it if U0-(max of U1 U2)>e
end it if U0-(max of U1 U2)

통계

  • Thankful Level 3

배지 보기

Feeds

보기 기준

질문


Hide Uitable result in numerical iteration
f = figure('Position',[10 10 600 600]); dat = {-1,1,1;0,-1,0;0,0,-1;1,0,0}; columnHeaders = {'18','29','51'}; rowHeaders = ...

거의 11년 전 | 답변 수: 1 | 0

1

답변

질문


Convert matrix to Uitable
A matrix is here U(35)=9; U(44)=29; A=[-1,1,1;0,-1,0;0,0,-1;1,0,0]; blnA = logical( A == -1 ); ...

거의 11년 전 | 답변 수: 1 | 0

1

답변

질문


Index exceeds matrix dimensions.AGAIN
FAILED AGAIN ;-(((( Accepted wrong one dU(35)=55; f = figure('Position',[10 10 600 600]); dat = {-1,1,1;0,-1,0;0,0,-1;1,0...

거의 11년 전 | 답변 수: 0 | 0

0

답변

질문


Index exceeds matrix dimensions.
f = figure('Position',[10 10 600 600]); dat = {-1,1,1;0,-1,0;0,0,-1;1,0,0}; cnames = {'1','2','5'}; rnames = {'1','2','3','...

거의 11년 전 | 답변 수: 2 | 1

2

답변

질문


Get result from uitable's row number
I have uitable below and i wanna get results uitable's row number not matrix's row number. f = figure('Position',[10 10 600...

거의 11년 전 | 답변 수: 1 | 0

1

답변

질문


How can i give difference to Variable
How can i give difference to number by ' S S' S'' And i will use it in next calculation. U=S+1 U'=S'+2 P=S...

거의 11년 전 | 답변 수: 2 | 0

2

답변

질문


How can i leave the vector result?
I have a problem I need a result dB(2)=7 but that result coming. What will i do? A(1)=4; A(2)=5; A(3)=6; row=2; %row ...

거의 11년 전 | 답변 수: 1 | 0

1

답변

질문


How can i find column refer to row
A=[-1,1,1;0,-1,0;0,0,-1;1,0,0]; blnA = logical( A == -1 ); blnOut = find(all(ismember(A,[0,-1]),2)); (Now i chose row 3...

거의 11년 전 | 답변 수: 1 | 0

1

답변

질문


How can i replace a matrix number with 0
A=[-1,1,1;0,-1,0;0,0,-1;1,0,0]; I chose A(1,3) and A(3,3) which is including 1 and -1 And how can i replace them zero

거의 11년 전 | 답변 수: 1 | 0

1

답변

질문


How can i choose one result of numerical result?
I have to choose higher row number (only one result) A=[-1,1,1;0,-1,0;0,0,-1;1,0,0]; blnA = logical( A == -1 ); blnOut = ...

거의 11년 전 | 답변 수: 2 | 0

2

답변

질문


check if whole matrix zero
Now i combined answers. Help me about this iteration. I want it iterate until whole matrix zero. A=[-1,1,1;0,-1,0;0,0,-1;1,...

거의 11년 전 | 답변 수: 1 | 0

1

답변

질문


find a row with -1
A=[-1,1,1;0,-1,0;0,0,-1;1,0,0]; blnA = logical( A == -1 ); blnOut = find( sum( blnA' ) == 1 ); With that command bln...

거의 11년 전 | 답변 수: 1 | 0

1

답변

질문


how to create matrix iteration
Give me structure please A=[-1,1,1;0,-1,0;0,0,-1;1,0,0] iteration command?? some operation if whole matrix not 0,...

거의 11년 전 | 답변 수: 1 | 0

1

답변

질문


How can i extract sub matrix from basic matrix
Hello. My basic matrix is B=[-1,1,1,5+i*2;0,-1,0,20+i*10;0,0,-1,10+i*3;1,0,0,0;30+i*30,50+i*50,60+i*60,0] Sub matrix is...

거의 11년 전 | 답변 수: 3 | 0

3

답변

질문


how can i add 2 row
A=[-1,-1,0,0,0;0,0,0,-1,0;0,1,-1,0,-1;0,0,1,0,0;1,0,0,1,1] With that matrix how can i add row to row command (code) And...

거의 11년 전 | 답변 수: 1 | 0

1

답변

질문


how can i find a special row
How can i find a row which including only -1. In that A matrix how can i write a code A=[-1,-1,0,0,0;0,0,0,-1,0;0,1,-1,0,-1...

거의 11년 전 | 답변 수: 2 | 0

2

답변

질문


Check the matrix result
How can i check the entire matrix zero or not |M(sum)|=0

거의 11년 전 | 답변 수: 2 | 0

2

답변

질문


Get data from the initial data problem?
Hello. I wrote the code below. Now i wanna change that code to work in every initial data. Iteration operation code must get ini...

거의 11년 전 | 답변 수: 0 | 0

0

답변

질문


Matrix problem, iterative matrix calculation
Hello my matrix problem?? I tried it in week. But no success! Here is the matrix A=[-1,-1,0,0,0;0,0,0,-1,0;0,1,-1,0,-1;0,...

거의 11년 전 | 답변 수: 1 | 0

1

답변

질문


How to create a big table
How can i create a big table with row name and column name. And all the blank square will be filled after my results computed. I...

거의 11년 전 | 답변 수: 1 | 0

1

답변

질문


Find Maximum one of numerical arguments
How can i find max of 30 arguments max(H1,H2.....H30) But error message occured "Error using max Too many input arguments.MAX...

거의 11년 전 | 답변 수: 1 | 0

1

답변

답변 있음
How to update new value in next iteration?
Thank you very much!! I put it wrong place :-)

거의 11년 전 | 0

질문


How to update new value in next iteration?
How can i update that (ending value) U1t or U2t in next iteration. U1t and U2t will be changed U1 and U2 (1st iteration ...

거의 11년 전 | 답변 수: 3 | 0

3

답변

질문


How to iterate it Please help me
Hello!! I need help!! For Iteration Here is my first iteration: S12t=6+2*1i; S01t=10+5*1i; U0=110; U1=110; ...

거의 11년 전 | 답변 수: 1 | 0

1

답변