Community Profile

photo

Doga Savas


2019 年からアクティブ

Followers: 0   Following: 0

統計

  • First Answer

バッジを表示

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

4年以上 前 | 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

4年以上 前 | 3