I found a very minor bug when setting variable value in an array.
For example if I type inside the "Calculation Icon "this value
Code: Select all
Sin_C [9] = 104
Sin_C [10] = 087
Sin_C [11] = 070
Sin_C [12] = 053
Sin_C [13] = 035
Sin_C [14] = 018
Sin_C [15] = 000
Sin_C [16] = -018
Sin_C [17] = -035
I get Syntax error on " Sin_C [10] = 087" , "Sin_C [14] = 018" and "Sin_C [16] = -018"
to get rid of the error I have to move down the line with the syntax error , for example "Sin_C [16] = -018"
copy "Sin_C [15] = 000" , change 000 to -018, and than [15] to [16] , I found this sequence the one that work beater , but is not 100% of the time like this