![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/15930840_1565271223541_DEF.jpg)
Doga Savas
自 2019 起处于活动状态
Followers: 0 Following: 0
Feeds
已回答
how can i solve this ,can anyone provide me with code? whats wrong with my code ?
function a = valid_date(year,month,day) if month > 12 a = false; return end if ~isscalar(year) || year < 1 || yea...
how can i solve this ,can anyone provide me with code? whats wrong with my code ?
function a = valid_date(year,month,day) if month > 12 a = false; return end if ~isscalar(year) || year < 1 || yea...
5 years 前 | 0
已回答
how to replace elements in top third, middle third, and bottom third of matix
function d = trio(n,m) a = randi(1,n,m); b = 2 + rand(n,m)*0; c = 3 + rand(n,m)*0; d = [a;b;c]; end
how to replace elements in top third, middle third, and bottom third of matix
function d = trio(n,m) a = randi(1,n,m); b = 2 + rand(n,m)*0; c = 3 + rand(n,m)*0; d = [a;b;c]; end
5 years 前 | 3