1 страниц (13 вхождений)
While loop never ends - Сообщения
#1 Опубликовано: 13.03.2020 15:27:06
Hi everyone, I've got problem with while loop. I have this function with Xstart = 0.2 ; Xfinish = 2 ; deltaX = 0.2 and I need to solve it in smath studio, but while loop is processing forever and never ends. I'm doing something wrong, or it's a bug? Thanks!
Images:
https://postimg.cc/Q9mqWkKd Smath studio
https://postimg.cc/KKZkgXPt Function I need to solve
Images:
https://postimg.cc/Q9mqWkKd Smath studio
https://postimg.cc/KKZkgXPt Function I need to solve
#2 Опубликовано: 13.03.2020 16:58:44
#3 Опубликовано: 13.03.2020 17:14:41
#4 Опубликовано: 13.03.2020 17:30:47
WroteI'm doing something wrong, or it's a bug? Thanks!
Some examples ...
Utilities Pts Critical Monte-Carlo.sm (18 КиБ) скачан 35 раз(а).
Utilities Program While FindIndex.sm (34 КиБ) скачан 45 раз(а).
#5 Опубликовано: 13.03.2020 17:55:24
WroteWroteI'm doing something wrong, or it's a bug? Thanks!
Some examples ...
Utilities Pts Critical Monte-Carlo.sm (18 КиБ) скачан 35 раз(а).
Utilities Program While FindIndex.sm (34 КиБ) скачан 45 раз(а).
I'm not sure I understood how to solve my function by this examples.
I don't know what I'm doing wrong:
https://postimg.cc/Q9mqWkKd
#6 Опубликовано: 13.03.2020 20:38:39
WroteI'm not sure I understood how to solve my function by this examples.
Your proposal is not a case of while loop,
strictly wrong application.
Page44 Unknown.sm (73 КиБ) скачан 31 раз(а).
#7 Опубликовано: 14.03.2020 06:06:47
You can do the job using a while loop but it is just one option (perhaps not the most straightforward one).

loops.sm (10 КиБ) скачан 35 раз(а).
loops.sm (10 КиБ) скачан 35 раз(а).
Martin Kraska
Pre-configured portable distribution of SMath Studio: https://en.smath.info/wiki/SMath%20with%20Plugins.ashx
3 пользователям понравился этот пост
#8 Опубликовано: 14.03.2020 06:19:48
WroteWroteI'm not sure I understood how to solve my function by this examples.
Your proposal is not a case of while loop,
strictly wrong application.
Page44 Unknown.sm (73 КиБ) скачан 31 раз(а).
I need all X and all Y(x) values in the end, for Xfirst = 0.2, Xlast = 2 with step 0.2.
y(0.2)=
y(0.4)=
y(0.6)=
...
y(2)=
And it should look something like this:
x= 0.2 y= -0.6126
x= 0.4 y= 0.2173
x= 0.6 y= 0.7064
x= 0.8 y= 1.0721
x= 1.0 y= 1.3842
x= 1.2 y= 1.6771
x= 1.4 y= 1.9738
x= 1.6 y= 2.2924
x= 1.8 y= 2.6501
x= 2.0 y= 3.0639
I can type every y(x) in smath studio:
https://postimg.cc/0bddLTqF
But, is it possible to do it with while loop?
#9 Опубликовано: 14.03.2020 06:21:13
WroteYou can do the job using a while loop but it is just one option (perhaps not the most straightforward one).
loops.sm (10 КиБ) скачан 35 раз(а).
I need all X and all Y(x) values in the end, for Xfirst = 0.2, Xlast = 2 with step 0.2.
y(0.2)=
y(0.4)=
y(0.6)=
...
y(2)=
And it should look something like this:
x= 0.2 y= -0.6126
x= 0.4 y= 0.2173
x= 0.6 y= 0.7064
x= 0.8 y= 1.0721
x= 1.0 y= 1.3842
x= 1.2 y= 1.6771
x= 1.4 y= 1.9738
x= 1.6 y= 2.2924
x= 1.8 y= 2.6501
x= 2.0 y= 3.0639
I can type every y(x) in smath studio:
https://postimg.cc/0bddLTqF
But, is it possible to do it with while loop?
#10 Опубликовано: 14.03.2020 08:25:47
#11 Опубликовано: 14.03.2020 08:52:29
WroteWhat you are asking for is so restricted and useless for purpose !
Then you can:
1. start wherever [L] as long as computable your ln(,)
2. end wherever [N]
3. as fine step size [Δ]
4. algo style for infinite applications
I'm asking for this cos' we are learning Pascal programming language in university, and we need to write this function in Pascal with [while a<=b do], and check it in MathCAD or SMath studio program.
I don't need any graphics, I just need to check the function with while loop. You sent example without while loop and without Xlast = 2, so is it possible to check this function with while loop, or no?
#12 Опубликовано: 14.03.2020 10:11:42
Pascal is pretty retarded these days for Engineering applications !
Years ago, Mathcad for Universities was pretty freaked.
Better use Smath productive for studies & Engineering.

Golden ratio will be a life time productive Companion.
As well as an advanced WhileLoop.
Golden Ratio jmG.sm (39 КиБ) скачан 35 раз(а).
Years ago, Mathcad for Universities was pretty freaked.
Better use Smath productive for studies & Engineering.
Golden ratio will be a life time productive Companion.
As well as an advanced WhileLoop.
Golden Ratio jmG.sm (39 КиБ) скачан 35 раз(а).
#13 Опубликовано: 14.03.2020 11:20:50
Wroteso is it possible to check this function with while loop, or no?
Absolutely, and there are several ways.
If you need a step-by step feedback on the fly you can use breakpoints (menu of math regions) and the debugger window ("View" menu). You might have to store the intermediate results in a dedicated variable though, to don't look into the whole matrix at each step.
Also you can use the function trace() and the output window, or you can build math strings using concat() and other functions, or maybe something more complex using the script region plugin by uni.
loops-1.sm (30 КиБ) скачан 38 раз(а).
If you like my plugins please consider to support the program buying a license; for personal contributions to me: paypal.me/dcprojects
1 страниц (13 вхождений)
-
Новые сообщения
-
Нет новых сообщений