Ramon Villamangca - MATLAB Central
photo

Ramon Villamangca


Last seen: 1 year ago Active since 2018

Followers: 1   Following: 0

Learner and Math Enthusiast

Programming Languages:
C++, Java, Javascript, MATLAB, Ruby, Perl, Swift, Assembly
Spoken Languages:
English

Statistics

All
CodyMATLAB AnswersFrom 10/18 to 03/25Use left and right arrows to move selectionFrom 10/18Use 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
4 Answers

Cody

117 Problems
3028 Solutions

RANK
184,400
of 297,560

REPUTATION
0

CONTRIBUTIONS
0 Questions
4 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
0

RANK
 of 20,456

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
14
of 159,148

CONTRIBUTIONS
117 Problems
3028 Solutions

SCORE
36,813

NUMBER OF BADGES
68

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Revival Level 1
  • First Answer
  • Sequences And Series I Master
  • Cody 10th Anniversary 10-Day Streak
  • Matrix Patterns III Master
  • Sequences And Series III Master
  • Indexing I Master
  • Computational Geometry I Master
  • Famous
  • Cody Problems in Japanese Master
  • Indexing II Master
  • Functions I Master

View badges

Feeds

View by

Answered
Project Euler, Lattice path - Problem 15
Project Euler Problem #15, is a combinatorial problem. if we mark going down as "D" and going the right as "R", the problem is r...

3 years ago | 0

Answered
tail recursive function and wrapper function
The question is not about whether Matlab supports tail recursion. The question is to make a tail recursive function and wrapper ...

3 years ago | 0

Answered
multiple digit number in to individual digits
a simple single line solution: >> num = 12345042117; >> arrayfun(@(x) mod(floor(num/10^x),10),floor(log10(num)):-1:0) ans =...

6 years ago | 0

Answered
How can I count the occurrences of each element in a vector in MATLAB?
This is how I did it: numOccur = sum(arrayfun(@(x) x == elem,vec)) where 'elem', is the element to search in the given v...

6 years ago | 0