-
FlexPro
- Auf einen Blick
- Features & Optionen
- Einsatzgebiete
- Alle Vorteile
- Neu in FlexPro 2021
- FlexPro gratis testen
- FlexPro View OEM Freeware
- Kaufberatung
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
- Produkte
- News
- Support
- Unternehmen
- Jobs
- Kontakt
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
ReadTextFile to import
- Dieses Thema hat 5 Antworten sowie 3 Teilnehmer und wurde zuletzt vor vor 19 Jahren, 3 Monaten von cheriftayyib@yahoo.de aktualisiert.
-
AutorBeiträge
-
Juli 27, 2005 um 12:33 am Uhr #12518cheriftayyib@yahoo.deTeilnehmer
Hi,
how can u use the function “ReadTextFile” to import data from the folowing text-file .
X/[µm] Y / [µm]
0 -358.521
3 -358.515
6 -358.508
9 -358.508
12 -358.508
15 -358.502
18 -358.496
. .
. .
. .
. .
. .
. .
. .my path is “C: mp est.txt”
and I want to get the 2 columns and assign their values to respectively X,Y so that:
X=Column1
Y=column2Thanks in advance!
Juli 27, 2005 um 12:57 am Uhr #8837Bernhard KantzTeilnehmerUse the Text Data Import Wizard to import your file.
1)Choose
– Create links
– Import as signals
2) Method: Automatic
3) Several columns, seperated with TAB; Decimal Character: Point
4) Line with names: 1; Column with X-values: 1The result is a text data link object. You can convert the data link object into a formula. Open the context menu (right mouse click) and choose Convert into formula.
The result is a FPScript formula:
Signal( ReadTextFile("C:\tmp\test.txt", 2, 0, 2, 2, FALSE, _ TYPE_FLOATINGPOINT64, FALSE, " ", FALSE), _ ReadTextFile("C:\tmp\test.txt", 2, 0, 1, 1, FALSE, _ TYPE_FLOATINGPOINT64, FALSE, " ", FALSE))
See also:
FlexPro Online Help
ReadTextFile FunctionJuli 28, 2005 um 6:34 am Uhr #8838cheriftayyib@yahoo.deTeilnehmerThank you for the help.
Juli 28, 2005 um 6:21 pm Uhr #8181cheriftayyib@yahoo.deTeilnehmerHi,
how can u use the function “ReadTextFile” to import data from the folowing text-file .
X/[µm] Y / [µm]
0 -358.521
3 -358.515
6 -358.508
9 -358.508
12 -358.508
15 -358.502
18 -358.496
. .
. .
. .
. .
. .
. .
. .my path is “C: mp est.txt”
and I want to get the 2 columns and assign their values to respectively X,Y so that:
X=Column1
Y=column2Thanks in advance!
Oktober 10, 2007 um 11:09 pm Uhr #8839Christian RathgeberTeilnehmerThe result is a FPScript formula:
Signal( ReadTextFile(“C:\tmp\test.txt”, 2, 0, 2, 2, FALSE, _TYPE_FLOATINGPOINT64, FALSE, ” “, FALSE), _ReadTextFile(“C:\tmp\test.txt”, 2, 0, 1, 1, FALSE, _ TYPE_FLOATINGPOINT64, FALSE, ” “, FALSE))
I tried this with Flexpro 7.0 but it doesn’t work. Do I have to change the code?
Thanks
Oktober 11, 2007 um 6:14 pm Uhr #8840Bernhard KantzTeilnehmerYou have to enter two backslashes for the string with the path of the text file.
Example:
“c:\\temp\\test.txt” -
AutorBeiträge
- Du musst angemeldet sein, um auf dieses Thema antworten zu können.