photo

Qiang Li


Last seen: 17일 전 2024년부터 활동

Followers: 0   Following: 0

통계

MATLAB Answers

5 질문
2 답변

순위
14,923
of 300,369

평판
3

참여
5 질문
2 답변

답변 채택
100.0%

획득한 표
3

순위
 of 20,936

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 168,436

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Thankful Level 2

배지 보기

Feeds

보기 기준

질문


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

1년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
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.

1년 초과 전 | 0

답변 있음
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...

1년 초과 전 | 0

| 수락됨

질문


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

1년 초과 전 | 답변 수: 3 | 0

3

답변

질문


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

1년 초과 전 | 답변 수: 1 | 1

1

답변

질문


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

1년 초과 전 | 답변 수: 1 | 1

1

답변

질문


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

1년 초과 전 | 답변 수: 1 | 1

1

답변