what are the following C datatypes Equivalents in Matlab

조회 수: 3 (최근 30일)
Imtiaz nabi
Imtiaz nabi 2022년 4월 12일
답변: Rik 2022년 4월 12일
Hello, I wanted to understand the equavalent data types of C in matab.
for example if we have a "long" in C do we need to use int16 in matlab to represent the long integer?
I am sorry if this seems like a super noob question but I am like super confused about these things.
Also can you please let me know the equavalents of the following data types in matlab?
  • long
  • unsigned long
  • int
  • signed long
  댓글 수: 2
Henry Barth
Henry Barth 2022년 4월 12일
Although there are "exact" representations of most c types in matlab (using cast() and typecast()), I would recommend you use double for everything as matlab allows 99% of builtin mathematical functions to use this type. You can use realmax() and intmax() fucntions to check if your type's maximum is included in double
Imtiaz nabi
Imtiaz nabi 2022년 4월 12일
Thank you so much

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

채택된 답변

Rik
Rik 2022년 4월 12일
Integer names in Matlab are much more clear than in C: uint8 uint16 uint32 uint64 int8 int16 int32 int64. The ones starting with u are unsigned, the others are signed.
The advice Henry gave you is valid: most functions will assume you're working with double (which is conveniently the same as a C double) and will be optimized for that use case.
Prior to R2010b, the support for actual operations with the integer data types was very limited (i.e. even plus didn't work). Since then, most functions will work with them, although some will convert to double internally.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Multirate Signal Processing에 대해 자세히 알아보기

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by