zhenyu zeng
Followers: 0 Following: 0
Statistik
RANG
29.519
of 296.041
REPUTATION
1
ANTWORTZUSTIMMUNG
52.94%
ERHALTENE STIMMEN
1
RANG
of 20.322
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 155.189
BEITRÄGE
0 Probleme
0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Frage
Get the analytical solution of inequalities in Matlab.
Hello, x + 2 y + 3 c + 4 d == 3/2 && x + y + c + d == 2 && x >= 2 && y < 2 && c < 3 && d > 5 How to solve this inequat...
mehr als ein Jahr vor | 2 Antworten | 0
2
AntwortenFrage
How to install "mpm" command?
Hello, The Matlab R2023a was successfully installed on Debian 12 and its documents was downloads too. Follow the instruction, t...
mehr als ein Jahr vor | 2 Antworten | 1
2
AntwortenFrage
Can't start "add-ons" on Matlab R2023a on Debain12.
Hello, The Matlab R2023a was installed on my computer successfully. But as the "add-ons" was clicked, there were errors: Warni...
mehr als ein Jahr vor | 1 Antwort | 0
1
AntwortFrage
How to confirm the x-axis parameter of fimplicit's picture
a=0.336; Ta=9.476; Te=1.208; Tw=1.498; eqh=[0.661,0.619,0.568]; ex=[-1.240,-1.346,-1.441]; en=-ex; ey=[0....
mehr als 5 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Why are condition2 condition3 and condition4 not logical?
a=0.336; Ta=9.476; Te=1.208; Tw=1.498; eqh=[0.661;0.619;0.568]; ex=[-1.24;-1.346;-1.441]; en=-ex; ey=[0.376;0.705;0.968];...
mehr als 5 Jahre vor | 1 Antwort | 0
1
AntwortFrage
What is the difference between them?
These code are right: a=0.336; Ta=9.476; Te=1.208; Tw=1.498; eqh=[0.661;0.619;0.568]; ex=[-1.24;-1.346;-1.441]; en=-ex; ...
mehr als 5 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
How to solve inequality group and plot color block?
For example: x*y+x*y^2+x*y^3+x^3*y<2 x*y+x*y^7+x^2*y^-5>9 (x+y^2)*x^2*y^-2>10 How can I slove ths inequality group by matl...
mehr als 5 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
There is an error in the Matlab document
C=gallery('uniformdata',[5 4], 0); [Q,R] = qr(C); [Q,R] = qr(C,0); [Q,R,P] = qr(C) Q = -0.3522 0.8398 -0.4131 -0...
mehr als 5 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
Why must have brackets around 'student'?
function avg=avgscore(testscores,student,first,last) for k=first:last scores(k)=testscores.(student).week(k); end avg=su...
mehr als 5 Jahre vor | 1 Antwort | 0
1
AntwortWhy the last row is wrong?
Wrong: sym.charToFunction (line 26) Invalid variable name. Wrong: sym/collect (line 40) x = sym.charToFunction(x);
mehr als 5 Jahre vor | 0
Frage
Why the last row is wrong?
t=sym('t','positive') ut=str2sym('Heaviside(t)-Heaviside(t-1)') ht=t*exp(-t) yt=int(subs(ut,t,tao)*subs(ht,t,t-tao),tao,0,t) ...
mehr als 5 Jahre vor | 1 Antwort | 0
1
AntwortFrage
What is the meaning of 'simplify(n./d)?
What is the meaning of 'simplify(n./d)? I feel n./d is weird. syms x A=[3/2 (x^2+3)/(2*x-1)+3*x/(x-1);4/x^2,3*x+4] pretty...
mehr als 5 Jahre vor | 1 Antwort | 0
1
AntwortFrage
expr2=collect(EXPR,'exp(-t)') Why is it wrong?
EXPR=str2sym('(x^2+x*exp(-t)+1)*(x+exp(-t))') expr1=collect(EXPR) expr2=collect(EXPR,'exp(-t)') Why expr2 shows: sym.charTo...
mehr als 5 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Why is it wrong: e3=sym('sin(x)^2+cos(x)=0')
Why is it wrong: e3=sym('sin(x)^2+cos(x)=0')
mehr als 5 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
four dimensions array's expression
A=rand(2,3,3) B=cat(4,A(:,:,1),A(:,:,2),A(:,:,3)) B(:,:,1,1)= B(:,:,1,2)= B(:,:,1,3)= B(:,:,1,4)= Why not B(:,:,1,1)= B(...
mehr als 5 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
What is the meaning of [B,J]=sort(A,'descend')?
What is the meaning of [B,J]=sort(A,'descend') Why can he use [B,J] here?
mehr als 5 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
A(B)=0 What is its meaning?
A=rand(5) B=A>0.8 A(B)=0 Can you tell me what is A(B)=0 meaning?
fast 6 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
Why does it become four number in a line?
>>A(0 0 0;0 2 2) >>A(1:2)=[] A= 0 2 0 2 Why A becomes 0 2 0 2 not becomes (0 2;0 2)?
fast 6 Jahre vor | 2 Antworten | 0