
Q (uick)BASIC Function: LOG
This example prints the value of e and uses the LOG function to calculate the natural logarithm of e taken to the first, second, and third powers.
LOG | Community QBasic
Rebooting the QBasic we all know and love!
QB64.com | QB64 is a modern extended BASIC programming …
The LOG math function returns the natural logarithm of a specified numerical value. Syntax logarithm! = LOG (value) Description value MUST be greater than 0. ERROR Codes occurs if …
Can QBasic (MS Quick Basic) do Log operations? - Page 1 - EEVblog
Mar 4, 2025 · Because you must first convert both dBm numbers to a real power in milliwatts which I think uses antilog, then you can add the milliwatts together in a normal linear fashion, …
QBasic - LOG - The Trek BBS
LOG returns the natural logarithm of a numeric expression. Example: PRINT EXP (0), EXP (1) 'Output is: 1 2.718282 PRINT LOG (1), LOG (EXP (1)) 'Output is: 0 1 SEE ALSO none
QBasic/Subroutines and Functions - Wikibooks
Jun 24, 2024 · Subroutines and functions are ways to break up your code into reusable 'lumps'. They allow the programmer reuse a large set of common instructions just by calling the …
Built-in Functions in QBASIC - All Bachelor
Aug 7, 2023 · Built-in functions, sometimes called built-in commands, are functions that are already included in the QBASIC programming language. These functions have specific jobs …
Quick Revision of QBASIC Commands and Programs - Simply …
Jun 13, 2020 · DATA statement allows us to read many data items in a single statement. The syntax for it is as below. Syntax. Read var1, var2. Read var3… DATA val1, val2, val3. Key …
QBasic and QuickBasic Manuals
QBasic and QuickBasic Knowledge Base. Complete Command Lists and Keyword References including all Functions, Statements and Operators.
Library Functions in Qbasic LEFT$, MID etc.- All Bachelor
Mar 9, 2022 · Explore QBASIC's user defined function & library functions like LEFT$, MID, and more. Understand their usage and significance in programming.
- Some results have been removed