photo

pb


2017년부터 활동

Followers: 0   Following: 0

통계

MATLAB Answers

5 질문
1 답변

순위
14,629
of 301,811

평판
3

참여
5 질문
1 답변

답변 채택
100.0%

획득한 표
2

순위
 of 21,419

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 176,674

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • First Review
  • Thankful Level 3
  • First Answer

배지 보기

Feeds

보기 기준

질문


Is there a possibility to use 3D sparse matrices on GPU?
Hi I am aware of program ndsparse written to implement 3d sparse matrices by Matt J for CPU. However i think it does not extend...

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

1

답변

질문


parfor slower than for in my code.
Hi, My code is the following parfor nn=1:Na temp=A{nn}*B{nn}; temp(1,1) = 0; temp(Nb,1) =...

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

1

답변

질문


removing FOR loop to solve Ax=B on multidimensional arrays on GPU
Hi, my code looks this way now(Its an example code i wrote): A=gpuArray(rand([1000 1000 1000])); B=gpuArray(rand([1000 1 10...

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

1

답변

질문


speed up run time of mldivide function.
Hi, I am calling mldivide function about 10^7 times: my syntax looks this way: C=mldivide(A,B); where both A,B are sparse...

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

3

답변

질문


How to reassign values for sparse GPU arrays?
I created a sparse GPU array (say L=sparse(1:Nper-1,2:Nper,x,Nper,Nper), where x is a GPU array ). Then I tried to reassign va...

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

1

답변

답변 있음
How to create a program to calculate taylor series of e^x using a while loop?
% calculation of e^x in taylor series x=3; % took an exampke vale of x=3 n=10; % took an example value of n=10 ...

8년 초과 전 | 1