please help me in plotting this c++ data (which is in txt file) in matlab.i have attached that file
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
this data is to be plotted
Réponses (1)
C B
le 21 Avr 2023
Modifié(e) : C B
le 21 Avr 2023
% Read the data from the file
data = dlmread('Mass_tcm.txt');
% Extract the parameter and target variable values from the data
space = data(:,1);
time = data(:,2);
% Plot the data
plot(time, space, 'o-')
xlabel('space')
ylabel('time')
title('space vs time')
% Plot the data
plot(space, time, 'o-')
xlabel('time')
ylabel('space')
title('time vs space')
Voir également
Catégories
En savoir plus sur Instrument Control Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!