File I/O C S-function Example

A simple C S-function which reads data from a file during simulation.
3,2K download
Aggiornato 1 set 2016

Visualizza la licenza

S-functions are used to create user defined blocks in Simulink. This S-function creates a block that reads data from a file incrementally at each time step of the Simulink simulation.
The S-function was written in C and uses the standard file I/O functions from the stdio.h library (fopen, fscanf, fclose). It is intended merely as an example.

The trickiest part of writing S-functions can sometimes be maintaining persistent data in subsequent calls to the S-function. This issue presents itself in this example. In order to read from the file throughout the simulation without closing and reopening the file each time step, the FILE pointer is stored in the PWork vector. This gives the S-function access to the FILE pointer at each step in the simulation.

In this S-function, the mdlStart function opens the file at the start of the simulation and the mdlTerminate function closes the file at the end. The mdlOutputs function is used to read data from the file at every time step.

To run the example:
1) Enter
mex -setup
at the MATLAB Command Prompt and select a compiler
2) Copy the attached files to the current MATLAB directory
3) Enter
mex cfileiosfun.c
to compile the S-function
4) Open the attached model and simulate.

Cita come

Jarrod Rivituso (2024). File I/O C S-function Example (https://www.mathworks.com/matlabcentral/fileexchange/13438-file-i-o-c-s-function-example), MATLAB Central File Exchange. Recuperato .

Compatibilità della release di MATLAB
Creato con R2006b
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux
Categorie
Scopri di più su Block and Blockset Authoring in Help Center e MATLAB Answers

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Versione Pubblicato Note della release
1.0.0.1

Updated license

1.0.0.0