Oli Tissot
MathWorks
Followers: 0 Following: 0
Statistiques
0 Questions
4 Réponses
RANG
3 638
of 295 448
RÉPUTATION
14
CONTRIBUTIONS
0 Questions
4 Réponses
ACCEPTATION DE VOS RÉPONSES
0.00%
VOTES REÇUS
3
RANG
of 20 227
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 153 872
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE 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...
environ 4 ans il y a | 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...
plus de 4 ans il y a | 1
| A accepté
Building Distributed/Codistributed Array with .mat files
The following should do what you want: ds = datastore('A_rowchunk_*.mat', 'Type', 'file', 'ReadFcn', @importdata, 'UniformRead'...
plus de 4 ans il y a | 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:...
plus de 4 ans il y a | 1
| A accepté