how to generate simulink signal (data value with specific time time )
4 views (last 30 days)
Show older comments
i success to pull on a file inside Simulink and read a signal value but i don't know how to block or generate this value signal at specific time
function y=fcn()
fprintf('XD\n');
fifo_in = 'C:\Users\kkhalil\Desktop\matlab.ipc-master\matlab.ipc-master\fifo1.txt';
fin = fopen(fifo_in, 'r');
fprintf('reading...\n');
nData = fread(fin, 1, 'uint8=>char') ;
data = uint8(nData)-48 ;
fclose(fin);
y = uint8(data);
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/157248/image.jpeg)
%
0 Comments
Answers (0)
See Also
Categories
Find more on Prepare Model Inputs and Outputs in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!