photo

Doga Savas


Con actividad desde 2019

Followers: 0   Following: 0

Estadística

MATLAB Answers

0 Preguntas
2 Respuestas

CLASIFICACIÓN
8.088
of 300.365

REPUTACIÓN
6

CONTRIBUCIONES
0 Preguntas
2 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.00%

VOTOS RECIBIDOS
3

CLASIFICACIÓN
 of 20.933

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN

of 168.262

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 can i solve this ,can anyone provide me with code? whats wrong with my code ?
function a = valid_date(year,month,day) if month > 12 a = false; return end if ~isscalar(year) || year < 1 || yea...

alrededor de 6 años hace | 0

Respondida
how to replace elements in top third, middle third, and bottom third of matix
function d = trio(n,m) a = randi(1,n,m); b = 2 + rand(n,m)*0; c = 3 + rand(n,m)*0; d = [a;b;c]; end

alrededor de 6 años hace | 3