Community Profile

photo

zhenyu zeng


Last seen: 6 months 前 自 2019 起处于活动状态

统计数据

  • Thankful Level 3

查看徽章

Content Feed

排序方式:

提问


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...

7 months 前 | 2 个回答 | 0

2

个回答

提问


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...

8 months 前 | 2 个回答 | 1

2

个回答

提问


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...

8 months 前 | 1 个回答 | 0

1

个回答

提问


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....

4 years 前 | 1 个回答 | 0

1

个回答

提问


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];...

4 years 前 | 1 个回答 | 0

1

个回答

提问


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; ...

4 years 前 | 0 个回答 | 0

0

个回答

提问


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...

4 years 前 | 0 个回答 | 0

0

个回答

提问


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...

5 years 前 | 0 个回答 | 0

0

个回答

提问


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...

5 years 前 | 1 个回答 | 0

1

个回答

已回答
Why the last row is wrong?
Wrong: sym.charToFunction (line 26) Invalid variable name. Wrong: sym/collect (line 40) x = sym.charToFunction(x);

5 years 前 | 0

提问


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) ...

5 years 前 | 1 个回答 | 0

1

个回答

提问


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...

5 years 前 | 1 个回答 | 0

1

个回答

提问


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...

5 years 前 | 1 个回答 | 0

1

个回答

提问


Why is it wrong: e3=sym('sin(x)^2+cos(x)=0')
Why is it wrong: e3=sym('sin(x)^2+cos(x)=0')

5 years 前 | 2 个回答 | 0

2

个回答

提问


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(...

5 years 前 | 2 个回答 | 0

2

个回答

提问


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?

5 years 前 | 0 个回答 | 0

0

个回答

提问


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?

5 years 前 | 2 个回答 | 0

2

个回答

提问


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)?

5 years 前 | 2 个回答 | 0

2

个回答