I want to round off my answer upto 4 decimal place but my code dosen't work.

1 vue (au cours des 30 derniers jours)
Vipul Kumar
Vipul Kumar le 26 Août 2018
Commenté : Aquatris le 26 Août 2018
function d=divided_diff(a,b,c,f1,f2,f3)
p=vpa((f2-f1)/(b-a));
q=vpa((f3-f2)/(c-b));
d=(q-p)/(c-a);
d=round(d,4);
end
  2 commentaires
Walter Roberson
Walter Roberson le 26 Août 2018
What inputs are you using, and what problem are you observing?
Aquatris
Aquatris le 26 Août 2018
Quick fix can be
round(double(d),4)

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Fourier Analysis and Filtering dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by