photo

Urmish Haribhakti


Last seen: nästan 5 år ago Active since 2020

Followers: 0   Following: 0

Statistics

MATLAB Answers

2 Questions
0 Answers

RANK
233 776
of 299 997

REPUTATION
0

CONTRIBUTIONS
2 Questions
0 Answers

ANSWER ACCEPTANCE
50.0%

VOTES RECEIVED
0

RANK
 of 20 858

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 166 881

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Thankful Level 1

View badges

Feeds

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?

ungefär 5 år 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 ...

ungefär 5 år ago | 6 answers | 0

6

answers