TCPを使ってmファ​イルからSimuli​nkに値を送りたい

2 次查看(过去 30 天)
tomoki takeuchi
tomoki takeuchi 2020-1-17
mファイルでtcpip()を用いてサーバを建てて,fwrite()を用いて書き出した値を
simulinkで受信使用としたのですが上手くいきませんでした.
simulinkのTCP/IP Receiveブロックを用いて受け取ろうとしたのですがサーバに繋がりません
また,コマンドウィンドウでしらべたところポートはLISTENになってたため受信する状態にはなっていたと思います.
何か良い方法があれば教えていただきたいです.
サーバのプログラムを添付します.
clear
t = tcpip('192.168.11.26',8000,'NetworkRole','server')
fopen(t);
while 1
data = [1:100]
fwrite(t,data)
pause(0.05)
end

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Development Computer Setup 的更多信息

产品


版本

R2019a

Community Treasure Hunt

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

Start Hunting!