Community Profile

photo

aniket GIRI


Last seen: 3 years ago Active since 2020

Statistics

  • First Review
  • First Answer

View badges

Content Feed

View by

Answered
How can blur an image
function out = blur(img,w) % convert to double for doing calculations imgD = double(img); [row, col] = size(img); out = z...

3 years ago | 0

Answered
How to write a function to determine if a date entered is valid
function isvalid = valid_date(y, m, d) % Check if the inputs are valid % Check that they are scalars if ~(...

4 years ago | 2