現在、MATLAB でシグナル プロセス ダイアグラムを作成しようとしています。これを行うには、同じグラフにプロットするためにマージが必要な異なる信号をプロットしたい 3 つのテーブルがあります (ただし、信号を別々に表示するために分離されています)。
これまでのところ、私は試しました:
% The variables below are examples of the tables that contain
% the variables I would like to plot.
s1 = table(data1.Time, data1.Var1); % This is a 8067x51 table
s2 = table(data2.Time, data2.Var2); % This is a 2016x51 table
s3 = table(data3.Time, data3.Var3); % This is a 8065x51 table
% This gives an error of 'must contain same amount of rows.'
S = [s1, s2, s3];
% This puts the three tables into a cell array
S = {s1, s2, s3};
どんな提案でも大歓迎です。