photo

Selman Baysal


Last seen: 3 giorni fa Attivo dal 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

Statistica

MATLAB Answers

0 Domande
4 Risposte

RANK
160.609
of 297.775

REPUTAZIONE
0

CONTRIBUTI
0 Domande
4 Risposte

ACCETTAZIONE DELLE RISPOSTE
0.00%

VOTI RICEVUTI
0

RANK
 of 20.469

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK

of 159.513

CONTRIBUTI
0 Problemi
0 Soluzioni

PUNTEGGIO
0

NUMERO DI BADGE
0

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • First Answer

Visualizza badge

Feeds

Visto da

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

circa 3 anni fa | 0

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

circa 3 anni fa | 0

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

circa 3 anni fa | 0

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

circa 3 anni fa | 0