-
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
How to create a 2D Array in FPScript?
- Dieses Thema hat 2 Antworten sowie 2 Teilnehmer und wurde zuletzt vor vor 21 Jahren, 3 Monaten von Richard Weisang aktualisiert.
-
AutorBeiträge
-
August 7, 2003 um 8:02 pm Uhr #12545Richard WeisangAdministrator
I know that I can use this expression to create an array of 1000 element starting with 0 and Delta 1 : (1000, 0, 1)
Is it possible to use the same expression to create 2 dimensional array (matrix)?
August 7, 2003 um 8:05 pm Uhr #8208Richard WeisangAdministratorI know that I can use this expression to create an array of 1000 element starting with 0 and Delta 1 : (1000, 0, 1)
Is it possible to use the same expression to create 2 dimensional array (matrix)?
August 7, 2003 um 8:05 pm Uhr #8879Bernhard KantzTeilnehmerThe simplest way is to use the FPScript Multiply operator:
0. # 1000
Creates a data series (vector) of 1000 64-Bit float values.0. # 1000 # 100
Creates a data matrix with 100 coloms and 1000 rows.To create a signal series, you can optionally assign an increasing X and Z component:
Signal(0. # 1000 # 100, 1, 1)In thes example the X an Z components both start at 0 and have an increment of 1.
-
AutorBeiträge
- Du musst angemeldet sein, um auf dieses Thema antworten zu können.