quantize
fixed.Quantizer
オブジェクトを使用した fi
の値の量子化
quantize
および fixed.Quantizer
は推奨されません。代わりに cast
、zeros
、ones
、eye
、または subsasgn
を使用してください。詳細については、互換性についての考慮事項を参照してください。
説明
例
2 つの固定小数点数の加算結果によって生じた語長を短縮
fixed.Quantizer
を使用して、2 つの固定小数点数の加算結果によって生じた語長を短くします。
q = fixed.Quantizer x1 = fi(0.1,1,16,15); x2 = fi(0.8,1,16,15); y = quantize(q,x1+x2)
q = fixed.Quantizer with properties: Signed: 1 WordLength: 16 SlopeAdjustmentFactor: 1 FixedExponent: -15 Bias: 0 Signedness: 'Signed' Slope: 3.0518e-05 FractionLength: 15 RoundingMethod: 'Floor' OverflowAction: 'Wrap' y = 0.9000 DataTypeMode: Fixed-point: binary point scaling Signedness: Signed WordLength: 16 FractionLength: 15
2 進小数点でスケーリングされた固定小数点 fi
を勾配とバイアスでスケーリングされた固定小数点 fi
に量子化
fixed.Quantizer
オブジェクトを使用して、2 進小数点でスケーリングされた固定小数点 fi
を勾配とバイアスでスケーリングされた固定小数点 fi
に変更します。
x = fi(pi,1,16,13) q = fixed.Quantizer(numerictype(1,7,1.6,0.2),'Round','Saturate') y = quantize(q,x)
x = 3.1416 DataTypeMode: Fixed-point: binary point scaling Signedness: Signed WordLength: 16 FractionLength: 13 q = fixed.Quantizer with properties: Signed: 1 WordLength: 7 SlopeAdjustmentFactor: 1.6000 FixedExponent: 0 Bias: 0.2000 Signedness: 'Signed' Slope: 1.6000 FractionLength: 0 RoundingMethod: 'Round' OverflowAction: 'Saturate' y = 3.4000 DataTypeMode: Fixed-point: slope and bias scaling Signedness: Signed WordLength: 7 Slope: 1.6 Bias: 0.2
入力引数
q
— データ型プロパティ
fixed.Quantizer
オブジェクト
量子化に使用するデータ型プロパティ。fixed.Quantizer
オブジェクトとして指定します。
x
— 量子化するデータ
fi
オブジェクト
量子化するデータ。fi
オブジェクトとして指定します。
データ型: fi
バージョン履歴
R2011b で導入R2013a: quantize
は非推奨
quantize
および fixed.Quantizer
は推奨されません。代わりに cast
、zeros
、ones
、eye
、または subsasgn
を使用してください。fixed.Quantizer
を削除する予定はありません。
R2013a 以降では、代わりに cast
、zeros
、ones
、eye
、または subsasgn
を使用してください。関数 cast
、zeros
、ones
、eye
、および subsasgn
では、fi
オブジェクトに加え、他のデータ型にも量子化できます。
非推奨 | 推奨 |
---|---|
x = fi(pi,1,16,13); q = fixed.Quantizer(numerictype(1,7,1.6,0.2),'Round','Saturate'); y = quantize(q,x) y = 3.4000 DataTypeMode: Fixed-point: slope and bias scaling Signedness: Signed WordLength: 7 Slope: 1.6 Bias: 0.2 |
x = fi(pi,1,16,13); F = fimath('RoundingMethod','Round','OverflowAction','Saturate'); nt = fi([],1,7,1.6,0.2,F); y = cast(x,'like',nt) y = 3.4000 DataTypeMode: Fixed-point: slope and bias scaling Signedness: Signed WordLength: 7 Slope: 1.6 Bias: 0.2 |
MATLAB コマンド
次の MATLAB コマンドに対応するリンクがクリックされました。
コマンドを MATLAB コマンド ウィンドウに入力して実行してください。Web ブラウザーは MATLAB コマンドをサポートしていません。
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)