符号付固定小数点型fiオブジェクトの行列を16進数でCSV出力する方法を教えてください。
조회 수: 2 (최근 30일)
이전 댓글 표시
現在、ワークスペースに下記のような
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);
댓글 수: 0
채택된 답변
Hernia Baby
2022년 7월 20일
hex関数をお使いください
a = fi((magic(3)/10), 1, 16, 12);
b = hex(a)
댓글 수: 2
Hernia Baby
2022년 7월 20일
편집: Hernia Baby
2022년 7월 20일
頂いたもので行うと以下の通りです
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);
b_fi = hex(a_fi)
■書き込みに関して
b_fiはchar型になっています
csv出力する場合はいくつか考えられます
writematrix(b_fi,'b_fi.csv','Delimiter','space')
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!