Community Profile

photo

Yifan He


Texas Tech University

Last seen: 2 months 前 自 2022 起处于活动状态

Followers: 0   Following: 0

Programming Languages:
MATLAB
Spoken Languages:
English, Chinese

统计数据

  • First Answer

查看徽章

Feeds

排序方式:

已回答
name value pairs with variable input arguments
function db = name_value_pairs(varargin) if nargin == 0 db = {}; elseif nargin/2 ~= fix(nargin/2) db = {}; elseif s...

1 year 前 | 0

已回答
how to find the element which is greater than or equal to its row and smaller or equal to its column in a matrix
function indices = saddle(M) m = size(M,1); n = size(M,2); indices = []; for i = 1:m for j = 1:n if (sum(M(i,j)...

1 year 前 | 0

已回答
Caesarts Cipher encryption algorithm assistance
function coded = caesar(v,s) x = double(v); y = x + s; if y >= 32 n = fix((y-32)/95); else n = fix((y-126)/95); e...

2 years 前 | 0