photo

Ramon Villamangca


Last seen: más de 2 años hace Con actividad desde 2018

Followers: 1   Following: 0

Learner and Math Enthusiast

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

Estadística

All
MATLAB Answers

0 Preguntas
4 Respuestas

Cody

117 Problemas
3028 Soluciones

CLASIFICACIÓN
181.425
of 300.392

REPUTACIÓN
0

CONTRIBUCIONES
0 Preguntas
4 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.00%

VOTOS RECIBIDOS
1

CLASIFICACIÓN
 of 20.934

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN
16
of 168.373

CONTRIBUCIONES
117 Problemas
3028 Soluciones

PUNTUACIÓN
36.793

NÚMERO DE INSIGNIAS
68

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • 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

Ver insignias

Feeds

Ver por

Respondida
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...

más de 4 años hace | 0

Respondida
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 ...

más de 4 años hace | 1

Respondida
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 =...

casi 7 años hace | 0

Respondida
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...

alrededor de 7 años hace | 0