jojocleo 发表于 2008-5-23 08:26

matlab中tcpip通讯

在matlab中写文件,与ip地址为192.168.20.67的远程主机进行通讯,在远程服务端,用c#编写了服务器程序,
本地matlab中的程序为:
echotcpip('on',4000)
t = tcpip('192.168.20.67‘,4000);
fopen(t)
fprintf(t,'Hello,this is client.\n')
ans1 = fscanf(t);
fprintf(t,'Are you ready?\n')
ans2 = fscanf(t);
echotcpip('off')
fclose(t)
运行程序,总是报错::??? Error using ==> tcpip.tcpip
The HOST must be specified. 不知道是什么原因啦,而我在命令窗口中单独运行每一句,又没有错误,而且和服务器端 也能进行通讯,请大虾们帮帮忙啊!谢谢了
页: [1]
查看完整版本: matlab中tcpip通讯