Real time data ploting in matlab

Hello everyone
I have a nx1 matrix which i have plotted. On same plot i want to plot a real time data. Can anyone suggest a method to do it.
Regards Rudraksh

2 commentaires

KSSV
KSSV le 27 Mai 2016
Can you elaborate what do you mean by real time data?
RUDRAKSH
RUDRAKSH le 28 Mai 2016
I have a matrix which i have already plotted on a figure. that plot has time on x axes and my desired variable on y axes.
Now on my HIL Simulation i want to follow that data points. Hence i will be getting a value at a defined time steps and i want to plot that data point at the same plot.

Connectez-vous pour commenter.

Réponses (1)

KSSV
KSSV le 31 Mai 2016

0 votes

FileInfo = dir('YourFileWithExtention');
TimeStamp = FileInfo.date;
The above code gives information about your file. You track the TimeStamp, once the file gets updated/ new data added into it, the timestamp changes; then you can read the uploaded data and plot in MATLAB figure to the existing plot.

Catégories

En savoir plus sur Creating, Deleting, and Querying Graphics Objects dans Centre d'aide et File Exchange

Question posée :

le 27 Mai 2016

Réponse apportée :

le 31 Mai 2016

Community Treasure Hunt

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

Start Hunting!

Translated by