Community Profile

photo

Doga Savas


Active since 2019

Statistics

  • First Answer

View badges

Content Feed

View by

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

mer än 4 år ago | 0

Answered
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

mer än 4 år ago | 3