Oli Tissot
MathWorks
Followers: 0 Following: 0
Statistics
0 Questions
4 Answers
RANK
3,641
of 295,495
REPUTATION
14
CONTRIBUTIONS
0 Questions
4 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
3
RANK
of 20,240
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153,991
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
Feeds
Pcg and Parallel Computing Toolbox
You can simply do: dA = distributed(A); db = distributed(b); [dx, flag, iter] = pcg(dA, db, [], 100); % dx is a distributed a...
4 years ago | 0
Could `distributed array` accelerate the speed of solving Linear Equations with Iterative Methods?
This is somehow expected: distributed arrays are not meant to increase the speed of execution but to be used for arrays that are...
4 years ago | 1
| accepted
Building Distributed/Codistributed Array with .mat files
The following should do what you want: ds = datastore('A_rowchunk_*.mat', 'Type', 'file', 'ReadFcn', @importdata, 'UniformRead'...
4 years ago | 1
What is the cause of the error of "CPARDISO encountered an error in phase 22: Error code = -2."?
Your guess is correct, you are getting this error because there is not enough local memory available. Some workarounds would be:...
4 years ago | 1
| accepted