photo

Oli Tissot

MathWorks

Last seen: 6 mois il y a Actif depuis 2020

Followers: 0   Following: 0

Statistiques

  • Knowledgeable Level 1
  • Revival Level 1
  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
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...

presque 4 ans il y a | 0

Réponse apportée
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...

presque 4 ans il y a | 1

| A accepté

Réponse apportée
Building Distributed/Codistributed Array with .mat files
The following should do what you want: ds = datastore('A_rowchunk_*.mat', 'Type', 'file', 'ReadFcn', @importdata, 'UniformRead'...

presque 4 ans il y a | 1

Réponse apportée
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:...

presque 4 ans il y a | 1

| A accepté