photo

Selman Baysal


Last seen: 4 días hace Con actividad desde 2022

Followers: 0   Following: 0

Selman Baysal currently works at the Department of Hydraulic Engineering, Canakkale Onsekiz Mart University. He is also a Ph.D. student in the Coastal Sciences and Engineering Department, Istanbul Technical University.

Programming Languages:
R, MATLAB
Spoken Languages:
English, Turkish

Estadística

MATLAB Answers

0 Preguntas
4 Respuestas

CLASIFICACIÓN
109.139
of 297.527

REPUTACIÓN
0

CONTRIBUCIONES
0 Preguntas
4 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.00%

VOTOS RECIBIDOS
0

CLASIFICACIÓN
 of 20.454

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN

of 159.075

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
name value pairs with variable input arguments
"varargin" is a cell array; this is why we cannot use something like varargin{1:2:nargin} and ~ischar(varargin(1:2:nargin)) give...

alrededor de 3 años hace | 0

Respondida
Reverse character array using recursion
I solve this problem by removing first and last elements in the vector until one or zero element remains. function w = reversal...

alrededor de 3 años hace | 0

Respondida
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.
Hi, i have just done this homework. Here is my code: function output = digit_sum(A) remA = rem(A,10); % calculates the l...

alrededor de 3 años hace | 0

Respondida
caesar cyphor encryption problem .
I am agree with @Wilver Sánchez's solution. I highly recommend avoiding to use "for loop" (it is not the wrong way, but it somet...

alrededor de 3 años hace | 0