Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,28 @@
|
|||
#Size = 4
|
||||
|
||||
DataSection
|
||||
Data.f 1, 2, 3, 1e11 ;x values, how many values needed is determined by #Size
|
||||
EndDataSection
|
||||
|
||||
Dim x.f(#Size - 1)
|
||||
Dim y.f(#Size - 1)
|
||||
|
||||
Define i
|
||||
For i = 0 To #Size - 1
|
||||
Read.f x(i)
|
||||
y(i) = Sqr(x(i))
|
||||
Next
|
||||
|
||||
Define file$, fileID, xprecision = 3, yprecision = 5, output$
|
||||
|
||||
file$ = SaveFileRequester("Text file for float data", "xydata.txt","Text file | *.txt", 0)
|
||||
If file$
|
||||
fileID = OpenFile(#PB_Any, file$)
|
||||
If fileID
|
||||
For i = 0 To #Size - 1
|
||||
output$ = StrF(x(i), xprecision) + Chr(9) + StrF(y(i), yprecision)
|
||||
WriteStringN(fileID, output$)
|
||||
Next
|
||||
CloseFile(fileID)
|
||||
EndIf
|
||||
EndIf
|
||||
Loading…
Add table
Add a link
Reference in a new issue