14 lines
258 B
Mathematica
14 lines
258 B
Mathematica
|
data1 = load('mat/data_001.mat', 't', 'x1', 'x2');
|
||
|
data2 = load('mat/data_002.mat', 't', 'x1', 'x2');
|
||
|
|
||
|
figure;
|
||
|
hold on;
|
||
|
plot(data1.t, data1.x1);
|
||
|
plot(data2.t, data2.x1);
|
||
|
hold off;
|
||
|
|
||
|
figure;
|
||
|
hold on;
|
||
|
plot(data1.t, data1.x2);
|
||
|
plot(data2.t, data2.x2);
|
||
|
hold off;s
|