Ruben,
The Data File interface API is available on our website at http://iads.symvionics.com/programs.html. With that API you will be able to write a program to generate iadsdata files. While I haven’t tried it, I would assume that you can call our API dll (COM object) within Matlab to produce the files.
Processing IAP Derived Parameters in Post Test
Generates .iadsData files for all IAP derived parameters in the configuration file; not applicable to Order Arrival (OA) IAP parameters that contain the SetTriggerParameter() function.
When the program starts, you will see the IAP processor window appear. It will compute all the IAP equations (without SetTriggerParam) and create data files for each parameter. After the process is complete, you can run the IADS Playback Client and examine the data (and modify the equations if the data looks incorrect). You will have to re-run the shortcut each time you change the equations to recalculate.
Command Line Entry
/iapDerived /local
To write out data files for IAP parameters:
1. Create a shortcut from the “IADS Playback Client” icon (not the Post Test Data Server icon).
2. Rename the shortcut to “Recompute IAP Equations”.
3. Right-click on the shortcut > Properties.
4. At the end of the Target line add “/iapDerived /local” ( "C:\Program Files\IADS\ClientWorkstation\Iads.exe" /iapDerived /local ).
5. Click on the “Recompute IAP Equations” icon to start the program. Note: The program will overwrite all your existing (non SetTriggerParam) IAP parameter data files within the directory.
6. Select the config file that defines the IAP parameters to be computed. Again, the data files within the directory will be overwritten during the computation.
Good luck,
Adam Chant
Symvionics, Inc.
IADS Application Engineer
(661) 273-7003 x 210
--
You received this message because you are subscribed to the Google Groups "IADS" group.
To unsubscribe from this group and stop receiving emails from it, send an email to iads+uns...@googlegroups.com.
To post to this group, send email to ia...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/iads/883e5210-bf1c-4834-b9ec-66d26ee8a903%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Stephen,
The existing IADS MatLab interfaces do not have a method to directly make IADS files.
The Data File interface API is available on our website at https://defense-solutions.curtisswright.com/system/files/2023-10/IadsDataFileInterface.zip. With that API you will be able to write a MatLab script to generate iadsdata files. It would be my recommendation to look at the VBS example in the .zip as it uses the automation interface similar to how MatLab would.
IadsFile = actxserver(‘IadsDataFileInterface.DataFile’);
StartTime = actxserver(‘IadsTime.IadsTime’);
Then type in the following to see their exposed interfaces.
methodview(IadsFile)
methodView(IadsTime)
I’ll follow up with a sample MatLab 2025b sample script that is similar to the VBS example.
Thank you,
Adam Chant
Project Engineer
IADS - Palmdale, Defense Solutions Division
Curtiss-Wright
190 Sierra Court Suite A3, Palmdale, CA 93550 United States
ach...@curtisswright.com | www.curtisswright.com
From: ia...@googlegroups.com <ia...@googlegroups.com>
On Behalf Of Stephen Jones
Sent: Tuesday, March 24, 2026 8:12 AM
To: IADS <ia...@googlegroups.com>
Subject: Re: [IADS] MAT-File (Level 5 or 4) Import/ Converter to IADSdata - IAP Processing in Post Flight Server [EXTERNAL]
WARNING: This message came from an external source. Please exercise caution and proper judgment when opening any attachments, clicking links or responding to this message.
--
You received this message because you are subscribed to the Google Groups "IADS" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
iads+uns...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/iads/508719e8-9853-461c-a57c-c5bbd2d40497n%40googlegroups.com.
Apologies, I’m not 100% sure the 64Bit parameter example is size formatted correctly. I also had some trouble getting MatLab to properly identify the Group and SubGroup, but it may be that I’m missing some preliminary table calls before
adding parameters to the Parameter Defaults table. One of our Developers may review the code and provide additional direction if necessary.
Thank you,
Adam Chant
Project Engineer
IADS - Palmdale, Defense Solutions Division
Curtiss-Wright
190 Sierra Court Suite A3, Palmdale, CA 93550 United States
From: 'Adam Chant' via IADS <ia...@googlegroups.com>
Sent: Tuesday, March 24, 2026 12:26 PM
To: IADS <ia...@googlegroups.com>
Subject: Re: [IADS] MAT-File (Level 5 or 4) Import/ Converter to IADSdata - IAP Processing in Post Flight Server [EXTERNAL]
WARNING: This message came from an external source. Please exercise caution and proper judgment when opening any attachments, clicking links or responding to this message.
Here is a sample function to write and read parameters in MatLab 2025b: Locates files in local user TEMP Folder and I'm not 100% sure the
--
You received this message because you are subscribed to the Google Groups "IADS" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
iads+uns...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/iads/e045621c-093a-4aec-9da6-4e96ccb9f97dn%40googlegroups.com.