Login
Remember
Register
Ask a Question
Print the probabilty arr = [0.23, 0.09, 1.2, 1.24, 9.99] using fix() this example of fuzzy logic or probability
+2
votes
asked
Jul 9, 2021
in
NumPy
by
rajeshsharma
Print the probabilty arr = [0.23, 0.09, 1.2, 1.24, 9.99] using fix() this example of fuzzy logic or probability
probability
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jul 9, 2021
by
rajeshsharma
arr_num = [0.23, 0.09, 1.2, 1.24, 9.99]
print(“Input probability : “,arr)
out_arr = np.fix(arr_num)
print(“Output probability : “,out_arr)
...