You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I checked the difference between "case 'gaussian' " part and "case
'log' " part.
So, two "."(s) disappeared in the "case 'log' " part. These
are what I found.
Y. Kawakami
The text was updated successfully, but these errors were encountered:
Hi,
I'd like to report that I found bugs in the " case 'log' " part in
fspecial.sci.
case 'log'
wrong:
x2 = ones(siz(1),1) * ([-sizx:sizx]^2);
y2 = ([-sizy:sizy]^2)' * ones(1, siz(2));
correct:
x2 = ones(siz(1),1) * ([-sizx:sizx].^2);
y2 = ([-sizy:sizy].^2)' * ones(1, siz(2));
I checked the difference between "case 'gaussian' " part and "case
'log' " part.
So, two "."(s) disappeared in the "case 'log' " part. These
are what I found.
Y. Kawakami
The text was updated successfully, but these errors were encountered: