What is the throughput of the Instrument Control Toolbox 2.1 (R14SP1) with the TCP/IP protocol?

1 view (last 30 days)

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 19 Nov 2009
Actual throughput can vary greatly, depending on the network. In real applications, it is most likely that the network is the limiting factor, not the Instrument Control Toolbox.
However, the TCP/IP connection in the Instrument Control Toolbox was designed for query-based communication with instruments, not for importing large amounts of streaming data. If you are importing large amounts of binary data, disable the terminator character in the TCPIP object prior to using the FOPEN function:
t = tcpip('127.0.0.1', 8012);
t.Terminator = '';
fopen(t);

More Answers (0)

Categories

Find more on Instrument Control Toolbox in Help Center and File Exchange

Products


Release

R14SP1

Community Treasure Hunt

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

Start Hunting!