How do I fix the error Function definitions are not permitted at the prompt or in scripts.

1 vue (au cours des 30 derniers jours)
Hello,
Whenever I create a function on matlab, an error message appears as follows:
Error: Function definitions are not permitted at the prompt or in scripts.
For example this function which finds the factorial of an integer:
n=[1:100];
function [y] = fact(n)
if(n<=1)
y=1;
else
y=n*fact(n-1)
end

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 29 Mar 2016
Write this part of code and save it as fact.m
function y = fact(n)
if n<=1
y=1;
else
y=n*fact(n-1)
end
then call this function in Matlab Windows Command
n=5
out=fact(n)

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by