Ramesh Patel - MATLAB Central
photo

Ramesh Patel


Last seen: nästan 3 år ago Active since 2021

Followers: 0   Following: 0

Statistics

MATLAB AnswersFrom 07/21 to 03/25Use left and right arrows to move selectionFrom 07/21Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

0 Questions
1 Answer

RANK
151 229
of 297 547

REPUTATION
0

CONTRIBUTIONS
0 Questions
1 Answer

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
0

RANK
 of 20 454

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 159 122

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

  • First Answer

View badges

Feeds

View by

Answered
I want to write a recursive Function that can calculate the sum of all the digit. If the input is 12345 then the answer will be 1+2+3+4+5 , without using string2num and loop.
function sum = digit_sum(num) if fix(num)==0 sum=0; else x = fix(num/10); sum = rem(num,10) + digit_sum(x); ...

mer än 3 år ago | 0