Community Profile

photo

Urmish Haribhakti


Last seen: 3 years ago Active since 2020

Statistics

  • Thankful Level 1

View badges

Content Feed

View by

Question


recursive function to check a Palindrome
function out=palindrome(x) n=numel(x); if n==1 out=true; else Can anyone continue from here?

3 years ago | 4 answers | 0

4

answers

Question


recursive function to calculate Max number.
function mx=recursive_max(v) if numel(v)==1 mx=v; end if numel(v)>1 mx= recursive_max(1); end this much i've got ...

3 years ago | 6 answers | 0

6

answers