我有两列数据。第一列是时间,第二列是时间的函数。但是有些时间值会丢失,所以函数值也会丢失。我不知道丢失行的索引(数据量太大)。例如,我有这个:
t x+w
2t 2x+w
3t 3x+w
6t 6x+w
7t 7x+w
然而,它应该是:
t x+w
2t 2x+w
3t 3x+w
4t 4x
5t 5x
6t 6x+w
7t 7x+w
我想扩展时间数组并添加相应的函数值。实际上f(t)是随机的,但具有线性增长的确定性行为。因此,如果我在数千个中添加两个值并不重要。那么我怎样才能在Matlab中做到这一点?
抱歉我的英文。我希望我能解释一下自己。 谢谢。
答案 0 :(得分:3)
如果您的数据如下所示:
t = [1 2 3 6 7];
x = 2;
w = 10;
X = t*x + w;
现在您只需interpolate即可获取缺失的X值:
ti = 1:7;
Xi = interp1(t, X, ti);
或者如果你说你有这个:
t = [1 2 3 6 7];
X = rand(size(t));
然后填写随机值:
Xi(t) = X; %Space out the origianl random value according to t
Xi(setdiff(1:7,t)) = rand() %Find the missing vlaues using setdiff and replace them with new random values
ti = 1:7;