Author |
Message |
Topic: floating point numbers |
gonzabar
Replies: 1
Views: 7346
|
Forum: General Help Posted: Fri Oct 28, 2005 10:59 am Subject: floating point numbers |
There is a way for store/load a floating point number (4 or 8 bytes) in/out memory ?.
Firs option (store): I have a string (example -32498.2581) and i wish store it in memory (4 or 8 bytes)
Second o ... |
Topic: Byte Convertor |
gonzabar
Replies: 8
Views: 30306
|
Forum: Visual DialogScript 5 Source Code Posted: Wed Mar 30, 2005 9:18 pm Subject: What about real numbers... |
What about real numbers (single precision, 4 bytes or double precision 8 bytes) ? |
Topic: Help with my find feature. |
gonzabar
Replies: 4
Views: 10064
|
Forum: General Help Posted: Fri Apr 02, 2004 12:01 pm Subject: Help with my find feature. |
You must init %%FOUND = 0 before goto search_continue |
Topic: VDS 5.01 versus 5.0 compiler (dsu) |
gonzabar
Replies: 5
Views: 14472
|
Forum: General Help Posted: Wed Mar 17, 2004 8:58 pm Subject: VDS 5.01 versus 5.0 compiler (dsu) |
Thank you Jules for your reply but i cannot fully understand it (maybe is because of my poor knowledge of the english language). What version do you regard as being the one that works correctly, 5.0 o ... |
Topic: VDS 5.01 versus 5.0 compiler (dsu) |
gonzabar
Replies: 5
Views: 14472
|
Forum: General Help Posted: Wed Mar 17, 2004 11:49 am Subject: VDS 5.01 versus 5.0 compiler (dsu) |
Example:
#define function,function_1
:function_1
...........
...........
...........
%e = @function_2(%1)
...........
...........
exit %e
If you compile it with VDS ... |
Topic: VDS 5.01 versus 5.0 compiler (dsu) |
gonzabar
Replies: 5
Views: 14472
|
Forum: General Help Posted: Wed Mar 17, 2004 10:40 am Subject: VDS 5.01 versus 5.0 compiler (dsu) |
In the 5.0 version of VDS, when one compiles a source file (.dsc) to create a precompiled unit (.dsu), the compiler donīt check (I think) wether the functions/commands in that module, were previously ... |
Topic: Conversion binary to IEEE floating point |
gonzabar
Replies: 3
Views: 11046
|
Forum: General Help Posted: Sat Jan 17, 2004 8:09 pm Subject: Conversion binary to IEEE floating point |
Do you know if exist any routine, in VDS, (or DLL/DSU) for this conversion ? |
Topic: Conversion binary to IEEE floating point |
gonzabar
Replies: 3
Views: 11046
|
Forum: General Help Posted: Fri Jan 16, 2004 9:51 am Subject: Conversion binary to IEEE floating point |
I use BINFILE for read/write binary floating point numbers. Does anybody knows how to convert binary numbers (4 or 8 bytes) to IEEE floating point numbers (single or double precision) and IEEE to bina ... |
Topic: More of 15 #include's |
gonzabar
Replies: 3
Views: 10041
|
Forum: General Help Posted: Wed Nov 12, 2003 1:59 pm Subject: More of 15 #include's |
I wish to create a library of modules (commands and/or functions). They are grouped into categories (arithmetic modules, string modules,...) and I have created a .dsu file for category. At the moment, ... |
Topic: More of 15 #include's |
gonzabar
Replies: 3
Views: 10041
|
Forum: General Help Posted: Wed Nov 12, 2003 1:30 pm Subject: More of 15 #include's |
I have a program with fifteen #include instructions. If I add other #include, the compiler hang. It's a bug ? |
Topic: Programs with defined functions "eat" more and mor |
gonzabar
Replies: 14
Views: 27653
|
Forum: General Help Posted: Thu Oct 09, 2003 8:00 pm Subject: Programs with defined functions "eat" more and mor |
I have observed that the program (interpreted or compiled) no frees the blocks of memory allocated for local variables and stuff each time the function is called. If you run the program and wait (infi ... |
Topic: Programs with defined functions "eat" more and mor |
gonzabar
Replies: 14
Views: 27653
|
Forum: General Help Posted: Thu Oct 09, 2003 11:59 am Subject: Programs with defined functions "eat" more and mor |
Dos anyone knows why a program with defined functions "eat" more and more memory of system. Examples:
Program-1:
REM This program do not "eat" memory of system.
REM It don't use "defined functi ... |
Topic: Incorrect math with -32767 |
gonzabar
Replies: 2
Views: 10845
|
Forum: Bug Reports Posted: Thu Jun 19, 2003 9:42 am Subject: Incorrect math with -32767 |
TITLE non-numeric?(VDS4) or incorrect sum(VDS5)
%A = -32767
if @not(@numeric(%A))
info %A is non-numeric value (if VDS4)
end
%C = @sum(%A,5)
INFO (VDS5) Incorrect: %C Correct: @diff(5,32 ... |
Topic: -32767 is non-numeric value ? |
gonzabar
Replies: 1
Views: 7079
|
Forum: General Help Posted: Fri Nov 22, 2002 12:57 pm Subject: -32767 is non-numeric value ? |
TITLE non-numeric?
%A = -32767
if @not(@numeric(%A))
info %A is non-numeric value
end
%C = @sum(%A,256)
INFO %C
exit
The last program ends with runtime error
If %A = -32768 or %A = - ... |
Topic: -32767 is non-numeric value ? |
gonzabar
Replies: 2
Views: 11071
|
Forum: Bug Reports Posted: Fri Nov 22, 2002 12:53 pm Subject: -32767 is non-numeric value ? |
TITLE non-numeric?
%A = -32767
if @not(@numeric(%A))
info %A is non-numeric value
end
%C = @sum(%A,256)
INFO %C
exit
The last program ends with runtime error
If %A = -32768 or %A = -32 ... |
|