Community Profile

photo

Cyrus David Pastelero


Last seen: 2 years 前 自 2020 起处于活动状态

统计数据

  • First Answer

查看徽章

Content Feed

排序方式:

已回答
caesar cyphor encryption problem .
%This is my aproach to the problem. function coded = caesar(arr, num) size = strlength(arr); coded = arr+num for...

3 years 前 | 1

已回答
Validation of a date in given format
%this is my stupid answer function valid = valid_date(year, month, day) if isscalar(year) && isscalar(month) && isscalar(...

3 years 前 | 0

已回答
How to write function for above combine matrix?
function T = trio(n,m) T1 = ones(n,m); //this just creates the body for us to use, you can also use zeros T = [T1;T1+1;T...

4 years 前 | 0