メインコンテンツ

このページの内容は最新ではありません。最新版の英語を参照するには、ここをクリックします。

MATLAB での固定小数点行列演算

効率的なコード用に最適化された CORDIC ベースの固定小数点の行列ソルバーと行列分解関数

これらの関数を使用して、固定小数点の行列演算を実行し、効率的なコードを生成します。これらの関数は、組み込みデバイスにとって効率的な 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 分解
fixed.qlessQRUpdateQR 分解の更新
fixed.qrABC = Q'B と上三角因子 R の計算
fixed.qrMatrixSolveQR 分解を使用した x に対する連立線形方程式 Ax = B の求解
fixed.qlessQRMatrixSolveQ-less QR 分解を使用した X に対する連立線形方程式 (A'A)X = B の求解
fixed.svdFixed-point Golub-Kahan-Reinsch singular value decomposition (R2022b 以降)
svd固定小数点の Golub-Kahan-Reinsch 特異値分解 (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.realQuantizationNoiseStandardDeviation実数値信号における量子化ノイズの標準偏差の推定 (R2021b 以降)
fixed.complexQuantizationNoiseStandardDeviation複素数値信号における量子化ノイズの標準偏差の推定 (R2021b 以降)

トピック

注目の例