Does isdouble works in MATLAB

44 ビュー (過去 30 日間)
Abhijit
Abhijit 2012 年 9 月 24 日
I have fixed-point toolbox installed for my MATLAB, but, the 'isdouble' function is not working. Is there any alternate function to check if a variable is double?
Thanks,

回答 (1 件)

Matt Fig
Matt Fig 2012 年 9 月 24 日
編集済み: Matt Fig 2012 年 9 月 24 日
A = magic(3);
B = single(A);
isa(A,'double')
isa(B,'double')
If you need the isdouble function but don't have it, you can easily make your own by using the ISA function.
What version are you using? Type this at the command line:
version
.
.
.
EDIT
You know that the isdouble function only works on fi objects, correct?
A = magic(3);
Afi = fi(A);
isdouble(A) % A is not an fi object, this will error.
isdouble(Afi) % A is an fi object, this won't error.
  1 件のコメント
Abhijit
Abhijit 2012 年 9 月 24 日
Thanks Matt Fig for your response. i did not know the fi function.

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

Community Treasure Hunt

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

Start Hunting!

Translated by