Community Profile

photo

Varsha Lohani


Last seen: 8 mois il y a Actif depuis 2021

Followers: 0   Following: 0

Statistiques

  • Revival Level 1
  • First Answer

Afficher les badges

Feeds

Afficher par

A répondu
Fibonacci Series Using Recursive Function
a = lfibor(5) function f =lfibor(n) if ~isscalar(n) || n ~= fix(n) || n < 0 error('non-negative integer scale inp...

plus de 2 ans il y a | 0

A répondu
Recursive Factorial Function Evaluation
clc clear all %% Factorial of the number n = 8; out = facto(n); %% Factorial function % Create a function for factorial ...

plus de 2 ans il y a | 0