UDP reading data speed
31 次查看(过去 30 天)
显示 更早的评论
Hi
I have a UDP source that transmits UDP packages with payload of 84 bytes and a rate of 20kHz. I have tried the UDP function in Matlab, fread(). This works, and I can get 3000 packages of data into Matlab and do signal analysis of the data stream. The data are consistent, and the data analysis are correct. The problem is that fread() use too much time. To read 3000 packages uses more than 4 seconds. To test the speed I have removed all other code and only testing the fread, by using this code:
For ii = 1:3000
fread (obj1,42,’unit16’);
end
This still uses more than 4 seconds.
Is there something that can help speeding up the fread command?
0 个评论
回答(4 个)
LUCA MONARI
2019-7-1
Hello Tom
Did you find any solution to your problem? I'm facing the same issue
Thank you
2 个评论
LUCA MONARI
2019-7-5
Hi, Tom
thanks for your reply.
We manage to solve the problem basically in the same way. I had a colleague to write a script in python for receiving and saving UDP data and use Matlab to call the script and then move the file.
Aiswarya Subramanian
2019-7-5
Hello,
Can you check the following link and see the changes they have suggested? I hope this helps :)
0 个评论
Andrew Neaville
2019-11-21
I've had good luck increasing speed by setting
UDP.DatagramTerminateMode = 'off';
Then reading out the whole buffer, which contains many packets, at a time. I then just parse the packets. If your packets are constant size, then this should be very easy.
bytesAvailable = UDP.BytesAvailable;
fread (UDP,bytesAvailable/2,'unit16');
0 个评论
Bhargavi Ragidi
2020-10-21
编辑:Bhargavi Ragidi
2020-10-21
Hi We are sending 1 packet of 730 bytes at 1ms through a specified port and we are receiving in Matlab through UDP port communication. When reading the packet using fread command to read that 1 packet of 730 bytes it is taking around 25ms
Generally the fread speed performance is slow or can we achieve same date rate as of sender??? Could any one explain..
1 个评论
LUCA MONARI
2020-10-21
Hi there
There are no way to increase the fread speed.
The only way I've found to significally increase the reading speed is the following:
- write a script in Python to fetch the data ad save the data to a file
- from Matlab call the Python script through the windows command prompt (command "system" in Matlab)
- read the data from the file created by the Python script
In my case, I was able to read 7 packets of 24 bytes each every 1 ms (7 kHz, 168 bytes every ms).
Hope this helps
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Call Python from MATLAB 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!