Cyrus David Pastelero
Followers: 0 Following: 0
Feeds
已回答
caesar cyphor encryption problem .
%This is my aproach to the problem. function coded = caesar(arr, num) size = strlength(arr); coded = arr+num for...
caesar cyphor encryption problem .
%This is my aproach to the problem. function coded = caesar(arr, num) size = strlength(arr); coded = arr+num for...
4 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(...
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(...
4 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...
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