MATLAB 递归函数

Ammar Ali 2021年10月2日 2021年7月4日
MATLAB 递归函数

本教程将讨论如何在 MATLAB 中定义递归函数。

MATLAB 中的递归函数

在执行过程中调用自身的函数称为递归函数。递归函数不断调用自身,直到满足某些条件。例如,让我们定义一个递归函数来查找给定数字的阶乘。请参考下面的代码。

myFactorial = factorial(5)
function output=factorial(input)
if (input<=0)
    output=1;
else
    output=input*factorial(input-1);
end
end

输出:

myFactorial =

   120

在上面的代码中,我们定义了一个递归阶乘函数,它将找到给定数字的阶乘。这个函数会调用自己,直到输入小于或等于零; 之后,将返回结果。正如你在输出中看到的,我们计算了 5 的阶乘,即 120。你可以定义自己的递归函数,只要你知道要达到的条件即可。

Author: Ammar Ali
Ammar Ali avatar Ammar Ali avatar

Hello! I am Ammar Ali, a programmer here to learn from experience, people, and docs, and create interesting and useful programming content. I mostly create content about Python, Matlab, and Microcontrollers like Arduino and PIC.

LinkedIn Facebook

相关文章 - MATLAB Function