주요 콘텐츠

MATLAB의 고정소수점 행렬 연산

효율적인 코드를 위한 최적화된 CORDIC 기반 고정소수점 수학 솔버 및 행렬 분해 함수

다음 함수를 사용하여 고정소수점 행렬 연산을 수행하고 효율적인 C/C++ 코드를 생성합니다. 이러한 함수는 임베디드 장치에 효율적인 CORDIC 기반 알고리즘을 사용하여 선형 연립방정식의 해를 구하고 핵심 행렬 연산(예: QR 분해 및 특이값 분해)을 수행합니다. 포함된 Fixed-Point Designer™ 함수를 사용하여 선형 시스템 솔버와 행렬 분해 블록을 위한 최적의 고정소수점 데이터형을 해석적으로 결정합니다.

이러한 알고리즘의 Simulink® 블록 구현은 Simulink에서의 고정소수점 행렬 연산 항목을 참조하십시오. MATLAB® 및 Simulink에서 수학 연산에 대한 CORDIC 기반 구현과 다른 임베디드 효율적인 구현은 MATLAB 및 Simulink에서의 고정소수점 수학 연산 항목을 참조하십시오.

함수

모두 확장

fixed.backwardSubstitute후진 대입을 통해 상부 삼각 연립방정식 풀기
fixed.forwardSubstitute전진 대입을 통해 하부 삼각 연립방정식 풀기
fixed.jacobiSVDFixed-point Jacobi singular value decomposition (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 (R2022b 이후)
svdFixed-point Golub-Kahan-Reinsch singular value decomposition (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 (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 (R2021b 이후)
fixed.realQRMatrixSolveFixedpointTypesDetermine fixed-point types for matrix solution of real-valued AX=B using QR decomposition (R2021b 이후)
fixed.complexQRMatrixSolveFixedpointTypesDetermine fixed-point types for matrix solution of complex-valued AX=B using QR decomposition (R2021b 이후)
fixed.realQlessQRMatrixSolveFixedpointTypesDetermine fixed-point types for matrix solution of real-valued A'AX=B using QR decomposition (R2021b 이후)
fixed.complexQlessQRMatrixSolveFixedpointTypesDetermine fixed-point types for matrix solution of complex-valued A'AX=B using QR decomposition (R2021b 이후)
fixed.realSingularValueLowerBoundEstimate lower bound for smallest singular value of real-valued matrix (R2021b 이후)
fixed.complexSingularValueLowerBoundEstimate lower bound for smallest singular value of complex-valued matrix (R2021b 이후)
fixed.singularValueUpperBoundUpper bound of largest singular value of matrix (R2022b 이후)
fixed.realConditionNumberUpperBoundEstimate of upper bound for 2-norm condition number of real-valued matrix (R2022b 이후)
fixed.complexConditionNumberUpperBoundEstimate of upper bound for 2-norm condition number of complex-valued matrix (R2022b 이후)
fixed.forgettingFactorCompute forgetting factor required for streaming input data (R2021b 이후)
fixed.forgettingFactorInverseCompute the inverse of the forgetting factor required for streaming input data (R2021b 이후)
fixed.realQuantizationNoiseStandardDeviationEstimate standard deviation of quantization noise of real-valued signal (R2021b 이후)
fixed.complexQuantizationNoiseStandardDeviationEstimate standard deviation of quantization noise of complex-valued signal (R2021b 이후)

도움말 항목

추천 예제