10-02-2024, 03:47 PM
Z-S,
I did get it loaded. Now, I have to figure out how to use it! Thanks,
JR
I did get it loaded. Now, I have to figure out how to use it! Thanks,
JR
Neural Nettwork (ANN) Extension
|
10-02-2024, 03:47 PM
Z-S,
I did get it loaded. Now, I have to figure out how to use it! Thanks, JR
10-03-2024, 11:11 AM
(This post was last modified: 10-03-2024, 11:15 AM by jrmrhrb00.
Edit Reason: Update
)
(10-01-2024, 10:11 PM)jrmrhrb00 Wrote: QDZM107.000 LitDev, Had to use quote to bring this page forward so you could see my request after updating the page. Still learning how to use this software. JR
10-03-2024, 12:34 PM
JR,
Yes those instructions seem right.
10-03-2024, 01:59 PM
LitDev,
Thanks for looking at it! JR I think that this is the best neural network example that you have created with small basic. I am still trying to learn everything I can about it. You always surprise me with some way of doing something that I would have never thought of. You do an exceedingly great job with your code writing. Thanks, JR
10-06-2024, 01:43 PM
(This post was last modified: 10-06-2024, 01:44 PM by jrmrhrb00.
Edit Reason: edit
)
LitDev,
In program qdzm107.000 you have the following in the code: data = "X" data = data+(R/255)+LDText.LF+(G/255)+LDText.LF+(B/255)+LDText.LF+((1+Cos)/2)+LDText.LF+((1+Sin)/2)+LDText.LF+(S)+LDText.LF+(L) data = Text.GetSubTextToEnd(data,2) You start off the data with an x and later remove it. What is the purpose of doing that? Thanks, JR
10-06-2024, 03:51 PM
Hi JR,
I think the parser needs a string as the first variable in order to append the following expressions as a string. Otherwise it would add the expressions as floating point numbers. Best regards Scout
10-09-2024, 02:30 PM
(This post was last modified: 10-09-2024, 02:31 PM by jrmrhrb00.
Edit Reason: Edit
)
LitDev,
textwindow.Left = (10+GW.Width)*LDGraphicsWindow.MouseXScale I have read the verbage in the intellisense probably a 100 times and it just doesn't make any sense to me for mousex. Could you explain what is being done in layman's terms? I know it has something to do with the desktop and why mousex? I'm still trying to grasp everything that you put in the QDZM107.000 program. Thanks, JR
JR,
This is due to the different scaling used with a GraphicsWindow and the screen. Its kind of hard to explanin in a sentence, but try playing with the commands: Desktop.Width GraphicsWindow.Width GraphicsWindow.Left TextWindow.Left GraphicsWindow.MouseX Mouse.MouseX See which are scaled with GraphicsWindow scaling and which are scaled with screen scaling and find that LDGraphicsWindow.MouseXScale is the scaling conversion between them. Condider the following: Code: GraphicsWindow.Left = 0
10-09-2024, 08:40 PM
LitDev,
I think I understand it, but the wording in the intellisense is confusing: Mouse.X = MouseXOffset + MouseXScale * GraphicsWindow.MouseX the rest of the wording is OK: Scaling of GraphicsWindow to Desktop coordinates. JR |
« Next Oldest | Next Newest »
|