Azzera filtri
Azzera filtri

How to convert four bytes into double ?

31 visualizzazioni (ultimi 30 giorni)
Hai, my requirement is mentioned below;
i m using Ethernet TCP IP communication and handshake was done sucessfully.
Then am using animated line plot with "addpoints" command. In addpoints command -> it supports only "double" data type for X & Y Axis, but my input value for Y axis is four bytes / two bytes.
How to convert two or four byte into double ? any byte swap need to be done ? if yes means pls comment your suggestion !!
here i will add my Matlap code:
a = tcpclient('192.168.10.4',2000,'Timeout',10,'ConnectTimeout',30); %Establish Communication
Data = read(a,8,"uint8"); %Read Values from Server
figure
h = animatedline;
ax = gca; % Current Axes
ax.YGrid = 'on';
ax.YLim = [0 500];
stop = false;
startTime = datetime('now');
while ~stop
Data = read(a,8,"uint8"); %%%% i need to convert double
t = datetime('now') - startTime;
xx = datenum(t);
addpoints(h,xx,Data);

Risposta accettata

Walter Roberson
Walter Roberson il 14 Ott 2022
Modificato: Walter Roberson il 14 Ott 2022
See typecast and also swapbytes (which you would need if the sender is sending "Big Endian")
However, is there any reason you do not simply do
Data = read(a, 1, "double");
possibly with a swapbytes() ?
  5 Commenti
Parthiban
Parthiban il 15 Ott 2022
my data format is LREAL / int16.
we are using TCP IP communication between PLC (Server) & MATLAB CLIENT and transfering data through byte format.
That byte transmission & Reception working fine only sir. i need to convert 4 bytes of uint8 (array 1*4) to one double values (Single value) and fetch those values to "Addpoints" command and to do live plotting
Walter Roberson
Walter Roberson il 15 Ott 2022
Could you give an example of the sequence of 4 bytes, and the corresponding numeric value that you expect?
Also I am still concerned about how sometimes you do not have exactly 4 bytes ? Please explain that further.

Accedi per commentare.

Più risposte (1)

Noah Prisament
Noah Prisament il 19 Lug 2023
Modificato: Noah Prisament il 19 Lug 2023
The "animatedline" now supports all numeric datatypes along with datetimes and durations natively as of R2023a!
In order to plot your data on an "animatedline" you can now utilize the following syntax:
h = animatedline(NaT-NaT, uint8(NaN));
addpoints(h,xx,Data);
You also don't have to convert the duration to a datenum anymore either. Use NaT-NaT for for a duration and NaT for datetimes.
  2 Commenti
Walter Roberson
Walter Roberson il 19 Lug 2023
I suspect you intended
h = animatedline(NaT-NaT, uint8(NaN));
Noah Prisament
Noah Prisament il 19 Lug 2023
Modificato: Noah Prisament il 19 Lug 2023
I did, thank you for catching the typo! I am editing the original answer so that it isn't copied incorrectly.

Accedi per commentare.

Community Treasure Hunt

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

Start Hunting!

Translated by