If statement gives wrong result

3 次查看(过去 30 天)
So I have the follwing Matlab code:
if isKey(containers.Map(str2, str),hasher("YR_.1EC9", 'Algorithm', 'SHA256'))
fprintf('no')
else
fprintf('You can use this name')
end
if I run it, it tells me
You can use this name>>
. But if I seperately excute :
isKey(containers.Map(str2, str),hasher("YR_.1EC9", 'Algorithm', 'SHA256'))
It tells me
ans =
logical
1
I'm so confused as if the logical statement is 1, shouldn't the if statement gives me 'no'?
  1 个评论
KSSV
KSSV 2021-9-17
If it is logical 1 then it should say No. But check while you run the code did you overwrite any variable such that answer is 1. You better run in debug mode and check,

请先登录,再进行评论。

回答(1 个)

Shanmukha Voggu
Shanmukha Voggu 2021-9-29
Hi Xinjie,
There may be several reasons for this issue
1)For example if you wrote the code that is going to make changes to str2 variable after the if-else-end, this might change the output of the isKey function when you run it
2)if the hasher function output is not same when executing it multiple times with the same input
if above statements cannot resolve the issue, then try debugging using the breakpoints. We need some more information about the code in order to reproduce and further investigate the issue
Refer to this for more information.

类别

Help CenterFile Exchange 中查找有关 Startup and Shutdown 的更多信息

产品


版本

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by