Community Profile

photo

Namwon Kim


Last seen: 7개월 전 2019년부터 활동

Followers: 0   Following: 0

통계

  • First Review
  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
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년 초과 전 | 1

답변 있음
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년 초과 전 | 1

답변 있음
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년 초과 전 | 0