Hauptinhalt

Festkomma-Matrix-Operationen in MATLAB

Optimierte CORDIC-basierte Festkomma-Matrixlöser und Matrixzerlegungsfunktionen für effizienten Code

Verwenden Sie diese Funktionen, um Festkomma-Matrixoperationen durchzuführen und effizienten C/C++ Code zu generieren. Diese Funktionen lösen lineare Gleichungssysteme und führen Kernmatrixoperationen wie QR-Zerlegung und Singulärwertzerlegung mithilfe eines CORDIC-basierten Algorithmus aus, der für eingebettete Geräte effizient ist. Verwenden Sie die enthaltenen Fixed-Point Designer™-Funktionen, um analytisch optimale Festkomma-Datentypen für den linearen Systemlöser und die Matrixfaktorisierungsblöcke zu bestimmen.

Für Simulink®-Blockimplementierungen dieser Algorithmen siehe Festkomma-Matrix-Operationen in Simulink. Für CORDIC-basierte und andere eingebettete effiziente Implementierungen von mathematischen Operationen in MATLAB® und Simulink siehe Festkomma-Rechenoperationen in MATLAB und Simulink.

Funktionen

alle erweitern

fixed.backwardSubstituteSolve upper-triangular system of equations through backward substitution
fixed.forwardSubstituteSolve lower-triangular system of equations through forward substitution
fixed.jacobiSVDFixed-point Jacobi singular value decomposition (Seit R2023a)
fixed.qlessQRQ-less QR decomposition
fixed.qlessQRUpdateUpdate QR factorization
fixed.qrABCompute C = Q'B and upper-triangular factor R
fixed.qrMatrixSolveSolve system of linear equations Ax = B for x using QR decomposition
fixed.qlessQRMatrixSolveSolve system of linear equations (A'A)X = B for X using Q-less QR decomposition
fixed.svdFixed-point Golub-Kahan-Reinsch singular value decomposition (Seit R2022b)
svdFixed-point Golub-Kahan-Reinsch singular value decomposition (Seit R2022b)
fixed.qrFixedpointTypesDetermine fixed-point types for transforming A and R and B to C=Q'B in-place, where QR=A is QR decomposition of A (Seit R2021b)
fixed.qlessqrFixedpointTypesDetermine fixed-point types for transforming A to R in-place, where R is upper-triangular factor of QR decomposition of A, without computing Q (Seit R2021b)
fixed.realQRMatrixSolveFixedpointTypesDetermine fixed-point types for matrix solution of real-valued AX=B using QR decomposition (Seit R2021b)
fixed.complexQRMatrixSolveFixedpointTypesDetermine fixed-point types for matrix solution of complex-valued AX=B using QR decomposition (Seit R2021b)
fixed.realQlessQRMatrixSolveFixedpointTypesDetermine fixed-point types for matrix solution of real-valued A'AX=B using QR decomposition (Seit R2021b)
fixed.complexQlessQRMatrixSolveFixedpointTypesDetermine fixed-point types for matrix solution of complex-valued A'AX=B using QR decomposition (Seit R2021b)
fixed.realSingularValueLowerBoundEstimate lower bound for smallest singular value of real-valued matrix (Seit R2021b)
fixed.complexSingularValueLowerBoundEstimate lower bound for smallest singular value of complex-valued matrix (Seit R2021b)
fixed.singularValueUpperBoundUpper bound of largest singular value of matrix (Seit R2022b)
fixed.realConditionNumberUpperBoundEstimate of upper bound for 2-norm condition number of real-valued matrix (Seit R2022b)
fixed.complexConditionNumberUpperBoundEstimate of upper bound for 2-norm condition number of complex-valued matrix (Seit R2022b)
fixed.forgettingFactorCompute forgetting factor required for streaming input data (Seit R2021b)
fixed.forgettingFactorInverseCompute the inverse of the forgetting factor required for streaming input data (Seit R2021b)
fixed.realQuantizationNoiseStandardDeviationEstimate standard deviation of quantization noise of real-valued signal (Seit R2021b)
fixed.complexQuantizationNoiseStandardDeviationEstimate standard deviation of quantization noise of complex-valued signal (Seit R2021b)

Themen

Enthaltene Beispiele