photo

Selman Baysal


Last seen: 3 days 前 自 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

统计学

MATLAB Answers

0 个提问
4 个回答

排名
109,115
of 297,503

声誉
0

贡献数
0 个提问
4 个回答

回答接受率
0.00%

收到投票数
0

排名
 of 20,449

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 159,017

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • First Answer

查看徽章

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

3 years 前 | 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...

3 years 前 | 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...

3 years 前 | 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...

3 years 前 | 0