While loop never ends

While loop never ends - Сообщения

#1 Опубликовано: 13.03.2020 15:27:06
Yes Man

Yes Man

0 сообщений из 6 понравились пользователям.

Группа: User

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
#2 Опубликовано: 13.03.2020 16:58:44
NDTM Amarasekera

NDTM Amarasekera

130 сообщений из 352 понравились пользователям.

Группа: User

Is this what you need?

while_test.png
Look within!... The secret is inside you. Best Regards Eng. NDTM Amarasekera - Sri Lanka
#3 Опубликовано: 13.03.2020 17:14:41
Yes Man

Yes Man

0 сообщений из 6 понравились пользователям.

Группа: User

Wrote

Is this what you need?

while_test.png



No, I need a range of numbers for X and Y, like: First X = 0.2, it's calculating Y(0.2) and shows first Y result, then X = 0.4 (previous X + delta X) and it's calculating Y(0.4), and until x = 2. In final I need a range of all X and all Y results.
#4 Опубликовано: 13.03.2020 17:30:47
Jean Giraud

Jean Giraud

983 сообщений из 6866 понравились пользователям.

Группа: User

Wrote

I'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
Yes Man

Yes Man

0 сообщений из 6 понравились пользователям.

Группа: User

Wrote

Wrote

I'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
Jean Giraud

Jean Giraud

983 сообщений из 6866 понравились пользователям.

Группа: User

Wrote

I'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
Martin Kraska

Martin Kraska

1222 сообщений из 2150 понравились пользователям.

Группа: Moderator

You can do the job using a while loop but it is just one option (perhaps not the most straightforward one).

loops.png
loops.sm (10 КиБ) скачан 35 раз(а).
Martin Kraska Pre-configured portable distribution of SMath Studio: https://en.smath.info/wiki/SMath%20with%20Plugins.ashx
3 пользователям понравился этот пост
Davide Carpi 14.03.2020 07:20:00, frapuano 14.03.2020 08:38:00, sergio 14.03.2020 14:01:00
#8 Опубликовано: 14.03.2020 06:19:48
Yes Man

Yes Man

0 сообщений из 6 понравились пользователям.

Группа: User

Wrote

Wrote

I'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
Yes Man

Yes Man

0 сообщений из 6 понравились пользователям.

Группа: User

Wrote

You can do the job using a while loop but it is just one option (perhaps not the most straightforward one).

loops.png
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
Jean Giraud

Jean Giraud

983 сообщений из 6866 понравились пользователям.

Группа: User

What 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

Data.PNG
#11 Опубликовано: 14.03.2020 08:52:29
Yes Man

Yes Man

0 сообщений из 6 понравились пользователям.

Группа: User

Wrote

What 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

Data.PNG



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
Jean Giraud

Jean Giraud

983 сообщений из 6866 понравились пользователям.

Группа: User

Pascal is pretty retarded these days for Engineering applications !
Years ago, Mathcad for Universities was pretty freaked.
Better use Smath productive for studies & Engineering.

Pt 100.PNG

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
Davide Carpi

Davide Carpi

1416 сообщений из 2873 понравились пользователям.

Группа: Moderator

Wrote

so 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
3 пользователям понравился этот пост
sergio 14.03.2020 14:35:00, frapuano 14.03.2020 16:00:00, SteelCat 17.05.2020 15:51:00
  • Новые сообщения Новые сообщения
  • Нет новых сообщений Нет новых сообщений