Community Profile

photo

Namwon Kim


Last seen: 6 months ago Active since 2019

Statistics

  • First Review
  • First Answer

View badges

Content Feed

View by

Answered
code for white gaussian noise for image
%% Code for White Gaussian Noise for Image % noisy = (sqrt((Standard Deviation)^2)*randn(size(Lena_image))+mean + Lena_image %...

4 years ago | 1

Answered
How to save data in a raw file?
Your code, fid=fopen('Profilevoltage.raw','w'); fwrite(fid,amplitude,'uint16'); fclose(fid); I recommend that you try thos...

4 years ago | 1

Answered
How to divide 256X256 matrix into sixteen 16X16 blocks?
Try this answer. x = zeros(256,256) % Input is (256,256). a = size(x, 1); b = size(x, 2); numParts = 16 c = floor...

4 years ago | 0