Warning: Error updating FunctionLine

14 vues (au cours des 30 derniers jours)
Anthony Knighton
Anthony Knighton le 19 Fév 2021
Commenté : Walter Roberson le 19 Fév 2021
I have written 3 simple lines of code to plot a function. Here is my code:
n=2;
omega=@(r) log(factorial(r+n-1))-log(factorial(r))-log(factorial(n-1));
fplot(omega,[0 150],'b')
When I plot it, it gives me the following error message: "Warning: Error updating FunctionLine".
In case this information is useful, the function is the natural log of the multiplicity of an Einstein Solid. The multiplicity is given by . Where n is the number of oscillators and r is quanta of energy. When we take natural log, we get . I checked in the command window, and the largest factorial that MATLAB can calculate is the factorial of 170, but it never has to calculate the factorial of a number greater than 170 while .

Réponses (1)

Walter Roberson
Walter Roberson le 19 Fév 2021
factorial is only for integers but fplot uses nonintegers
  1 commentaire
Walter Roberson
Walter Roberson le 19 Fév 2021
You could recode in terms of gamma

Connectez-vous pour commenter.

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by