photo

Aramis


Last seen: 2 meses hace Con actividad desde 2024

Followers: 0   Following: 0

Estadística

MATLAB Answers

0 Preguntas
6 Respuestas

CLASIFICACIÓN
12.737
of 298.974

REPUTACIÓN
4

CONTRIBUCIONES
0 Preguntas
6 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.00%

VOTOS RECIBIDOS
3

CLASIFICACIÓN
 of 20.664

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN

of 162.957

CONTRIBUCIONES
0 Problemas
0 Soluciones

PUNTUACIÓN
0

NÚMERO DE INSIGNIAS
0

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • First Answer

Ver insignias

Feeds

Ver por

Respondida
how to find the element which is greater than or equal to its row and smaller or equal to its column in a matrix
The best solution function s = saddle(M) % Create logical vector that are true for each saddle condition separately m...

12 meses hace | 0

Respondida
Sparse Matrix, struct, structure, Using cell arrays
function matrix = sparse2matrix(cellvec) matrix = ones(cellvec{1}) * cellvec{2}; for x=3:length(cellvec) matr...

alrededor de 1 año hace | 0

Respondida
next prime number using While loops
THE BEST ANSWER function k = next_prime(n) k=n; while isprime(k)==false || k==n k = k+1; end end ...

más de 1 año hace | 0

Respondida
Write a function called valid_date that takes three positive integer scalar inputs year, month, day. If these three represent a valid date, return a logical true, otherwise false. The name of the output argument is valid.
The best answer function valid = valid_date(year,month,day) if not(isscalar(year))|| not(isscalar(month)) || not(isscalar(...

más de 1 año hace | 1