How to set Matlab precision to Single

111 ビュー (過去 30 日間)
Pratheek
Pratheek 2012 年 8 月 31 日
my code requires a precision 32 bit float. Matlab uses double by default, is there a way to set it to single by default so that when ever my program executes , all my variables are in single

回答 (3 件)

Walter Roberson
Walter Roberson 2012 年 8 月 31 日
This information can be found in http://undocumentedmatlab.com. My memory is that it is
system_specific('precision', '24')
but you should check.
However, it should definitely not be trusted that all internal calculations will be made in single precision even if all the variables involved are single precision.
  4 件のコメント
Star Strider
Star Strider 2012 年 8 月 31 日
Thank you! (Bookmarked for later reference.)
An experimental system_dependent() call generated no errors (or to the best of my knowledge, anything else), and a feature() call generated:
Error using feature
Not enough input arguments.
I was hoping that both calls would generate some documentation themselves, but no such luck. I don't surf Undocumented MATLAB much because it seems to be mostly Java. I may need to visit it more often.
Jan
Jan 2012 年 9 月 1 日
The command is: feature('SetPrecision', 24). The deafult value is 53, which means standard 64 bit DOUBLE precision, while 64 enables the storing of intermediate values in the 80 bit registers of Intel processors.
But this command enables rounding to single precision. This is useful to check the numerical precision of an algorithm, but it neither saves time nor memory. Therefore I assume, that this is not useful for you. Please explain, what you are wanting to achieve.

サインインしてコメントする。


Azzi Abdelmalek
Azzi Abdelmalek 2012 年 8 月 31 日
  2 件のコメント
Pratheek
Pratheek 2012 年 8 月 31 日
i want all my variable to work automatically with single precision, not by casting
Azzi Abdelmalek
Azzi Abdelmalek 2012 年 8 月 31 日
編集済み: Azzi Abdelmalek 2012 年 8 月 31 日
if your data are single , all your variables will be single
a=single(2)% single
b=14 % double
c=a*b % single

サインインしてコメントする。


Star Strider
Star Strider 2012 年 8 月 31 日
The best you can likely do is described in this thread ‘Single Precision by Default? ... lots of auxiliary variables to cast’ last year.
  1 件のコメント
Yash
Yash 2012 年 9 月 1 日
change format

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by