![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/14840679_1550733876801_DEF.jpg)
Selman Baysal
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.
R, MATLAB
Spoken Languages:
English, Turkish
Statistiques
0 Questions
4 Réponses
RANG
108 652
of 297 016
RÉPUTATION
0
CONTRIBUTIONS
0 Questions
4 Réponses
ACCEPTATION DE VOS RÉPONSES
0.00%
VOTES REÇUS
0
RANG
of 20 419
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 157 725
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
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...
environ 3 ans il y a | 0
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...
environ 3 ans il y a | 0
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...
environ 3 ans il y a | 0
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...
environ 3 ans il y a | 0