‎01-22-2011 11:17 PM
I have generated a signal in matlab using simulink. Now I want load this signal in labview for further analysis. How Can I? Plz Help.
‎01-23-2011
11:06 AM
- last edited on
‎06-04-2024
11:49 AM
by
Content Cleaner
You could simple save your signal to file and then load it into LabVIEW using one the file I/O VIs.For example, you could save it as delimited text file or you could save it using raw binary. Or, depending on your needs, you could go and purchase the LabVIEW Simulation Interface Toolkit.
‎01-23-2011 11:33 AM
Matlab does not have options to save in tdms format or raw binary format. So How to do it ?
‎01-23-2011
11:43 AM
- last edited on
‎06-04-2024
11:50 AM
by
Content Cleaner
@Sankhadip wrote:
Matlab does not have options to save in tdms format or raw binary format. So How to do it ?
It does not have built-in functions to write to TDMS but it does have functions to write to a simple binary file: http://www.mathworks.com/help/techdoc/ref/fwrite.html
For TDMS you could try the DLL provided here: https://knowledge.ni.com/KnowledgeArticleDetails?id=kA00Z0000019NdwSAE&l=en-US
‎01-23-2011 08:43 PM
Thanks for the immediate reply. I am checking it then I will let u know....