0
На рассмотрении

Add precomputeLU support for dense matrix

Zhen Zhong 5 лет назад обновлен Pavel Holoborodko 5 лет назад 3

Now, precomputeLU only supports sparse matrix. In addition, Maybe also precomputeQR.

На рассмотрении

Dense matrices is way more easy/faster to handle.

[L,U,P] = lu(A);  % pre-compute dense LU beforehand

...
x = U\(L\(P*b));  % re-use it in a loop for different right-hand sides
...

In future versions we will support same syntax for sparse matrices (and also will keep the precomputeLU)

Thanks for your help. But I think the following matlab code is more convenient (It is in the lu page of matlab document):

dA = decomposition(A,'lu');
x = dA\b

What do you think of it?

This is the same idea as 'precomputeLU', but we introduced it years before 'decomposition'.

We will support 'decomposition' in future versions, of course.

Сервис поддержки клиентов работает на платформе UserEcho