how to generate simulink signal (data value with specific time time )

조회 수: 2 (최근 30일)
Ahmed Samy
Ahmed Samy 2016년 10월 18일
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);
%

답변 (0개)

카테고리

Help CenterFile Exchange에서 Signal Generation에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by