HOW CAN I PLOT THIS?
古いコメントを表示
Hello, I'm not able to plot this even if I converted the data I need in table.
Could anyone kindly help me please?
Thank you!
clear all
close all
load('GIULIA_MMEQ1.mat');
A=table2array(GIULIAMMEQ1(:,2));
B=str2double(A);
giulia_MM_EQ_NEW= B * 0.35 * 10;
C=array2table(GIULIAMMEQ1);
stackedplot(GIULIAMMEQ1.Dec1997,C)
採用された回答
その他の回答 (2 件)
David Hill
2021 年 7 月 1 日
load('EXAMPLE.mat');
m=table2array(GIULIAMMEQ1);
d=datenum(m(:,1));
v=str2double(m(:,2));
idx=~isnan(v);
plot(d(idx),v(idx));
6 件のコメント
David Hill
2021 年 7 月 1 日
Converted time string to datenum value for easy plotting.
load('EXAMPLE.mat');
m=table2array(GIULIAMMEQ1);
d=datenum(m(:,1));
v=3.5*str2double(m(:,2));%figured you could figure out where you wanted to multiply
idx=~isnan(v);
plot(d(idx),v(idx));
Pul
2021 年 7 月 1 日
David Hill
2021 年 7 月 1 日
編集済み: David Hill
2021 年 7 月 1 日
look at datenum()
load('EXAMPLE.mat');
m=table2array(GIULIAMMEQ1);
d=datenum(m(:,1));
v=3.5*str2double(m(:,2));%figured you could figure out where you wanted to multiply
idx=~isnan(v);
plot(d(idx)-730088,v(idx));%substract the first date to get days on horizontal
Amit Bhowmick
2021 年 7 月 2 日
Use stackedplot instead of plot for the correction on x axis leveling
Pul
2021 年 7 月 2 日
Pul
2021 年 7 月 2 日
0 投票
4 件のコメント
Amit Bhowmick
2021 年 7 月 2 日
use the .mat file which you have attached in this thread
Pul
2021 年 7 月 2 日
Amit Bhowmick
2021 年 7 月 3 日
T=table(C,NEW,'Variablenames',{'Year' 'Value'}); %Put label
stackedplot(T,'XVariable','Year') %
Pul
2021 年 7 月 3 日
カテゴリ
ヘルプ センター および File Exchange で Data Type Conversion についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!






