-
FlexPro
- At a Glance
- Features & Options
- Applications
- All Advantages
- What’s New in FlexPro 2021
- Try FlexPro For Free
- FlexPro View OEM Freeware
- Buying Guide
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
- Products
- News
- Support
- Company
- Contact
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
Division durch Null
- This topic has 5 replies, 2 voices, and was last updated 18 years, 8 months ago by Martin Uellenberg.
-
AuthorPosts
-
March 3, 2006 at 6:24 pm #12513Martin UellenbergMember
Hallo,
ich möchte die y-Werte von zwei Signalen (Signal1 und Signal2) durcheinander dividieren. Sobald der Wert des Divisors = 0 ist, bekomme ich natürlich eine Fehlermeldung (Division durch Null). Wie kann ich mit FPScript dafür sorgen, dass bei einer Division durch Null eine Null als Ergebnis hinterlegt wird ?
Danke und Gruß
UlliMarch 3, 2006 at 6:24 pm #8176Martin UellenbergMemberHallo,
ich möchte die y-Werte von zwei Signalen (Signal1 und Signal2) durcheinander dividieren. Sobald der Wert des Divisors = 0 ist, bekomme ich natürlich eine Fehlermeldung (Division durch Null). Wie kann ich mit FPScript dafür sorgen, dass bei einer Division durch Null eine Null als Ergebnis hinterlegt wird ?
Danke und Gruß
UlliMarch 3, 2006 at 11:36 pm #8825Bernhard KantzParticipantIn this case you can use the Try…Catch…End statement.
Example:
Dim a, b a = 1. b = 0 Try return a/b Catch Exception return ? End
March 6, 2006 at 6:04 pm #8826Martin UellenbergMemberHallo,
danke für die Antwort. Leider komme ich damit noch nicht zurecht. Nochmal mein Problem. Ich möchte zwei Signale (Signal1 und Signal2) durcheinander dividieren. An den Stellen, wo eine Division durch Null stattfindet, soll eine Null als Ergebnis raus kommen. Mit oben angegebener Lösung bekomme ich immer nur einen Wert als Ergebnis. Nicht aber einen neuen Datensatz (mit gleicher Werteanzahl wie Signal1 und Signal2).
Wie sieht die Formel dafür aus ?
Danke und Gruß
MartinMarch 6, 2006 at 7:51 pm #8827Bernhard KantzParticipantThere is a difference if the Y component of the signal contains integer or floating point values. If the signal contains integer values an exception will be thrown in case of a division by zero (see sample above).
With floating point values no exception is thrown, but the result will contain an invalid value (?) at the places where a division by zero occured.
The different behavior stems from the fact that there is no possibility to express an invalid value with integer values.This what you have to do: Execute the division as usual. Search and replace the invalid values by 0 afterwards:
dim a, b, c a = { 1., 2., 3., 4., 5., 6. } b = { 3, 0, 2, 0, 11, 0 } c = a / b c[SearchVoidValues(c)] = 0
Support
support@weisang.comMarch 6, 2006 at 9:32 pm #8828Martin UellenbergMemberVielen Dank. So funktioniert es.
-
AuthorPosts
- You must be logged in to reply to this topic.