photo

zhenyu zeng


Last seen: 22 days ago Active since 2019

Followers: 0   Following: 0

Statistics

MATLAB Answers

17 Questions
1 Answer

RANK
29,581
of 300,379

REPUTATION
1

CONTRIBUTIONS
17 Questions
1 Answer

ANSWER ACCEPTANCE
52.94%

VOTES RECEIVED
1

RANK
 of 20,931

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 168,262

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Thankful Level 3

View badges

Feeds

View by

Question


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

2 years ago | 2 answers | 0

2

answers

Question


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

2 years ago | 2 answers | 1

2

answers

Question


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

2 years ago | 1 answer | 0

1

answer

Question


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

6 years ago | 1 answer | 0

1

answer

Question


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

6 years ago | 1 answer | 0

1

answer

Question


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

6 years ago | 0 answers | 0

0

answers

Question


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

6 years ago | 0 answers | 0

0

answers

Question


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

6 years ago | 0 answers | 0

0

answers

Question


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

6 years ago | 1 answer | 0

1

answer

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

6 years ago | 0

Question


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

6 years ago | 1 answer | 0

1

answer

Question


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

6 years ago | 1 answer | 0

1

answer

Question


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

6 years ago | 1 answer | 0

1

answer

Question


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

6 years ago | 2 answers | 0

2

answers

Question


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

6 years ago | 2 answers | 0

2

answers

Question


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?

6 years ago | 0 answers | 0

0

answers

Question


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?

6 years ago | 2 answers | 0

2

answers

Question


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

6 years ago | 2 answers | 0

2

answers