Effacer les filtres
Effacer les filtres

feature('setprecision') in matlab 2022

18 vues (au cours des 30 derniers jours)
Elsiddig Elsiddig
Elsiddig Elsiddig le 27 Mar 2023
Modifié(e) : Stephen23 le 4 Avr 2023
Hello, currently I have matlab 2022a. It seems the command
feature('setprecision')
does not work in it. The function feature itself works but does can not find setprecision. It shows the following error message:
Error using feature
Feature precision not found
Is there a way around this?
Thank you.

Réponses (1)

Venkat Siddarth
Venkat Siddarth le 4 Avr 2023
I understand that you are facing issues in using feature function with setprecison parameter.Possible workaround is as follows:
The feature('setprecision') command is used to set the precision of the numeric calculations in MATLAB. However, it seems that you are not able to use 'setprecision' option in Matlab 2022a.
One possible workaround, is to use the vpa() function to perform calculations with a higher precision. vpa() stands for variable precision arithmetic and allows you to specify the desired number of digits for your calculations.
For example, you can use the following code to perform a calculation with 100 digits of precision:
digits(100) %Digits function is used to set the precison used by vpa, by default it is 32 bits
a = vpa(pi)
a = 
3.141592653589793238462643383279502884197169399375105820974944592307816406286208998628034825342117068
%But if you want to explicitly change the precison of specific variables you can
%do it as follows and it wont effect the value of "digits".
b = vpa(exp(1),10)
b = 
2.718281828
%Note: Arithmetic operation happen according to the value of digits
c=a*b
c = 
8.539734222673566611300185395393428880590006981651537285035011588320340680535960171405242699594003394
I hope this resolves the issue
Venkat Siddarth V.
  1 commentaire
Stephen23
Stephen23 le 4 Avr 2023
Modifié(e) : Stephen23 le 4 Avr 2023
"The feature('setprecision') command is used to set the precision of the numeric calculations in MATLAB. "
The FEATURE function has never been documented. But now we have an official statement from TMW staff, what it is used for. Can you also provide a link to some documentation for this function?

Connectez-vous pour commenter.

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Produits


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by