필터 지우기
필터 지우기

Convert single to double

조회 수: 74 (최근 30일)
Ana Gonçalves
Ana Gonçalves 2022년 10월 27일
편집: Frederic Rudawski 2022년 10월 27일
I have 1x18007 single, and it has a certain range (which is not the real range), and I need to convert it to double, to get the actual values.
PS.: typecast doesn't work.
>> a = typecast(driverAppliedTorqueAtSteeringWheel, 'double');
Error using typecast
The first input must contain a multiple of 2 elements to convert from single (32 bits) to
double (64 bits).
  댓글 수: 1
James Tursa
James Tursa 2022년 10월 27일
편집: James Tursa 2022년 10월 27일
"... I need to convert it to double, to get the actual values ..."
This doesn't make any sense to me. Converting singles to doubles will result in exactly the same value since doubles can represent every single exactly, just in a different bit representation format. Please explain what you mean by "actual values." Maybe you can give a few examples of single values and what double values you think they should be converted to.

댓글을 달려면 로그인하십시오.

채택된 답변

Frederic Rudawski
Frederic Rudawski 2022년 10월 27일
편집: Frederic Rudawski 2022년 10월 27일
My first guess would be:
a = double(driverAppliedTorqueAtSteeringWheel)
But you probably have to adjust the range yourself.
EDIT:
The problem with typecast is, that you need 2 singles to create one double, so you need to fill the missing information with addiditional singles, e.g.:
data = single([1;2;3;4;5])
b = single(zeros(size(data)));
M = [b data]';
newdata = M(:)
a = typecast(newdata,'double')

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Numeric Types에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by