MultiSolve 3x3

Version 1.0.0.0 (905 octets) par Ofek Shilon
Vectorized solve of multiple 3x3 linear systems
1,3K téléchargements
Mise à jour 6 juin 2006

Aucune licence

xx = multisolve3x3(AA,b)

Highly optimized solution of multiple 3x3 linear systems.

The m 3-by-3-coefficient matrices can be given in 2 forms:
(1) The argument matrix AA is 3m x 3 (i.e., the k-th linear system occupies rows 3k-2:3k).
(2) The argument AA is an 3x3xm array. (the k-th linear system is AA(:,:,k) ).

Similarly, the result vectors b can be given in 2 forms (independent of AA):
(1) a 3m x 1 vector, where the k-th result is in rows 3k-2:3k,
(2) a 3xm matrix, whose k-th column contains the k-th result.

Either way, the solution xx is given in size identical to that of b.

Example:

m = 10 ; % system num
AA = rand(3,3,m);
bb = rand(3,m);

xx = multisolve3x3(AA,bb);

%test results:
for jj=1:m
max(abs( AA(:,:,jj) * xx(:,jj) - bb(:,jj) ))
end

Citation pour cette source

Ofek Shilon (2024). MultiSolve 3x3 (https://www.mathworks.com/matlabcentral/fileexchange/11292-multisolve-3x3), MATLAB Central File Exchange. Récupéré le .

Compatibilité avec les versions de MATLAB
Créé avec R2006a
Compatible avec toutes les versions
Plateformes compatibles
Windows macOS Linux
Catégories
En savoir plus sur Linear Algebra dans Help Center et MATLAB Answers

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Version Publié le Notes de version
1.0.0.0