Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fspecial.sci issue #13

Open
tanchinluh opened this issue Dec 2, 2023 · 0 comments
Open

fspecial.sci issue #13

tanchinluh opened this issue Dec 2, 2023 · 0 comments

Comments

@tanchinluh
Copy link
Owner

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant