ReadSignalysFileX (FPScript)
Reads the X component of a channel from a file in Signalys format.
Syntax
ReadSignalysFileX(File, ChannelNumber)
The syntax of the ReadSignalysFileX function consists of the following parts:
Part |
Description |
---|---|
File |
String with the path of the Signalys file to be read. Permitted data structures are scalar value. Supported data types are string (file name). |
ChannelNumber |
Number of the channel to be read out of the file. Permitted data structures are scalar value. All integral data types are permitted. The value must be greater or equal to 0 and less or equal to 100. |
Remarks
If the argument is a list, then the function is executed for each element of the list and the result is also a list.
Available in
FlexPro View, Basic, Professional, Developer Suite
Examples
Signal(ReadSignalysFileY("c:\\examples\\file.vh", 1), ReadSignalysFileX("c:\\examples\\file.vh", 1))
Imports the X and Y component of the first channel from a Signalys file and generates a signal from that.