符号付固定小数点型fiオブジェクトの行列を16進数でCSV出力する方法を教えてください。
Show older comments
現在、ワークスペースに下記のような
64ビット符号付固定小数点型fiオブジェクトの行列(1×100のembedded.fi) a_fi があります。
これを16進数でcsv出力する方法を教えていただきたいです。よろしくお願いいたします。
a = randn(1,100);
T = numerictype(true,64,60);
F = fimath('OverflowMode', 'saturate',...
'RoundMode', 'round',...
'SumMode', 'FullPrecision',...
'ProductMode', 'FullPrecision',...
'MaxProductWordLength', 256,...
'MaxSumWordLength', 256);
a_fi = fi(a,T,F);
Accepted Answer
More Answers (0)
Categories
Find more on MATLAB での固定小数点オブジェクトの作成 in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!