photo

Qiang Li


Last seen: 4 månader ago Active since 2024

Followers: 0   Following: 0

Statistics

MATLAB Answers

5 Questions
2 Answers

RANK
14 689
of 297 503

REPUTATION
3

CONTRIBUTIONS
5 Questions
2 Answers

ANSWER ACCEPTANCE
100.0%

VOTES RECEIVED
3

RANK
 of 20 449

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 159 017

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 2

View badges

Feeds

View by

Question


solving linear system with decomposition(A,'qr') and qr(A) produce different results
load post.mat x1 = decomposition(CA,'qr')\b_f; [qq2,rr2,pp2] = qr(CA); x2= pp2 * (rr2\(qq2'*b_f)); [qq3,rr3,pp3] = qr(CA...

8 månader ago | 1 answer | 0

1

answer

Answered
inv(A)*B*inv(A) or A\B/A, which is more accurate for a full rank A and half rank B
The short answer for my application: A\B/A. inv(A)*B*inv(A) introduces inconsistency after iterations.

8 månader ago | 0

Answered
Intel P +E or AMD for large (2000) Monte Carlo simulations
I went with the intel 14900k. For me it seemed to be the safe bet at that moment. https://blogs.mathworks.com/matlab/2022/07/13...

9 månader ago | 0

| accepted

Question


inv(A)*B*inv(A) or A\B/A, which is more accurate for a full rank A and half rank B
My matrices are A = [0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 24 0 0 0 0 ...

9 månader ago | 3 answers | 0

3

answers

Question


matrix inverse results different between r2023b and 2021b
I was solving a high-dimensional nonlinear optimization problem with gradient descent method and found out that R2023b and R2021...

9 månader ago | 1 answer | 1

1

answer

Question


Intel P +E or AMD for large (2000) Monte Carlo simulations
I'm about to build a new pc with running large Monte Carlo simulation in mind. I know that matlab doesn't benefit from threading...

9 månader ago | 1 answer | 1

1

answer

Question


polynomial multiplication not accurate, using conv() vs symbolic
I'm calculating the square of a polynomial inside a loop. It seems to me that, calculating it using conv() is resulting in large...

10 månader ago | 1 answer | 1

1

answer