符号付固定小数点型fiオブジェクトの行列を16進数でCSV出力する方法を教えてください。
Afficher commentaires plus anciens
現在、ワークスペースに下記のような
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);
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Fixed-Point Designer dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!