programming if statement in for loop

programming if statement in for loop - Messages

#1 Posted: 4/12/2019 10:55:29 AM
jbv74

jbv74

0 likes in 3 posts.

Group: User

Hello everybody
I continue to learn programming in Smath (with no skill in other codes)and have few questions with use of "loops" in the attached file
Hope someone can help a newbie
Thanks
test if in for loop2.sm (23 KiB) downloaded 72 time(s).
#2 Posted: 4/12/2019 11:20:47 AM
Arie

Arie

93 likes in 285 posts.

Group: User

Your function definitions don't include the arguments x and y that you're calling out on the left hand side.

See attached.

test if in for loop2-2_alyles.sm (24 KiB) downloaded 82 time(s).

PS: the reason the first loop even worked, was because when you initially defined F(x,y) A[i and B[i were undefined. Therefore whenever you called F(x,y) in the first loop, it would return the variable A[i and B[i. You were defining A, B and i in each iteration of the loop before calling F(A]i, B]i). So the function appeared to work. However, it didn't matter what values you actually passed to the function. You could have called F(10000000, 2342302034) and you still would have returned the present values of A[i + B[i.

When you defined F(x,y) the second time, A, B, and i were already defined. A=[2;4;7], B=[4;12;21] and i=3. Therefore the value of F(x,y) for any x and y was evaluated to 28. (7+21).
Feel free to join the SMath Studio Users Discord Channel: https://discord.gg/PayZpJW
#3 Posted: 4/12/2019 11:53:49 AM
Jean Giraud

Jean Giraud

983 likes in 6866 posts.

Group: User

Visit these two typical Bolean documents ...
Generally Bolean must be complete [<=, >=].
Otherwise Smath may forgive, but mostly will not forgive.
Among all Bolean, I encountered only one case that <= fails
as the scalar meaning must be vague ... thus <

2D Plot Discontinuous [min(,)].sm (14 KiB) downloaded 63 time(s).
Integrate Discontinuous [Nuance].sm (24 KiB) downloaded 48 time(s).
  • New Posts New Posts
  • No New Posts No New Posts