tarretarretarre Posted June 24, 2017 Share Posted June 24, 2017 (edited) Hi! I know i can check for zero divission, but that is not the question, i was just wondering if this is working as intended? Global $zd = 0 / 0 MsgBox(0, 0, $zd) MsgBox(0,"Double", VarGetType($zd)) MsgBox(0, "1. False", ($zd > 0 )) MsgBox(0, "2. False", ($zd < 0 )) MsgBox(0, "3. False", ($zd == 0 )) MsgBox(0, "4. True", ($zd <> 0 )) MsgBox(0, "5. True", ($zd >= 0 )) MsgBox(0, "6. True", ($zd <= 0 )) This is the same code in javascript var zd = 0 / 0; console.log(zd); // NaN console.log(typeof zd); // number console.log((zd > 0)); // false console.log((zd < 0)); // false console.log((zd == 0)); // false console.log((zd != 0)); // true console.log((zd >= 0)); // false console.log((zd <= 0)); // false https://jsfiddle.net/5fnLjcpv/ Edited June 24, 2017 by tarretarretarre Socket-IO - An event-driven TCP UDF (Realtime chat example) AutoIt-API-WS - An expressive HTTP server you can use to build your own API with (Screenshots) Link to comment Share on other sites More sharing options...
iamtheky Posted June 24, 2017 Share Posted June 24, 2017 Schrödinger's float is both greater than and less than zero. tarretarretarre 1 ,-. .--. ________ .-. .-. ,---. ,-. .-. .-. .-. |(| / /\ \ |\ /| |__ __||| | | || .-' | |/ / \ \_/ )/ (_) / /__\ \ |(\ / | )| | | `-' | | `-. | | / __ \ (_) | | | __ | (_)\/ | (_) | | .-. | | .-' | | \ |__| ) ( | | | | |)| | \ / | | | | | |)| | `--. | |) \ | | `-' |_| (_) | |\/| | `-' /( (_)/( __.' |((_)-' /(_| '-' '-' (__) (__) (_) (__) Link to comment Share on other sites More sharing options...
BrewManNH Posted June 24, 2017 Share Posted June 24, 2017 What exactly are you expecting, and what are you getting that isn't as expected? AutoIt isn't Javascript, so you can't compare apples to oranges, compare it to what you expect the answer to be and let us know what that is. tarretarretarre 1 If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
Subz Posted June 24, 2017 Share Posted June 24, 2017 I believe the last three MsgBoxes are being compared by string rather than number. For checking for undefined you can use something I found in another post: Global $zd = StringStripWS(0/0, 3) MsgBox(4096, 'Is Number', StringCompare($zd, String(Number($zd))) > 0 ? "Result : " & $zd & @CRLF & "Is a number : " & False : "Result : " & $zd & @CRLF & "Is a number : " & True) tarretarretarre 1 Link to comment Share on other sites More sharing options...
water Posted June 24, 2017 Share Posted June 24, 2017 "IND" stands for "indeterminate". That's why you can't rely on the results of all your operations (in variation of "garbage in, garbage out": IND in, IND out )https://stackoverflow.com/questions/347920/what-do-1-inf00-1-ind00-and-1-ind-mean tarretarretarre 1 My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki Link to comment Share on other sites More sharing options...
tarretarretarre Posted June 24, 2017 Author Share Posted June 24, 2017 @BrewManNH i was just asking generally, my stupid @$$ didn't think to google the value, I just assumed it was Autoit-related by default. Thanks for the clearification @water Socket-IO - An event-driven TCP UDF (Realtime chat example) AutoIt-API-WS - An expressive HTTP server you can use to build your own API with (Screenshots) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now