我有 amxn 矩阵,我想将其用作 Simulink 中的源。源的输出应该是大小为 n 的列。数据需要在列之间进行插值。
例子:
源矩阵:
[ 2 4 8;
3 6 9;
5 10 15 ]
此示例矩阵在不同时间输出的 simulink 模型:
t = 0 : t = 0.5 : (interpolated) t = 1 :
[ 2; [ 3.0; [ 4;
3; 4.5; 6;
5 ] 7.5 ] 10 ]
该示例仅显示 t = [0, 0.5, 1.0] 的输出,但实际源需要是连续的。
我试过了direct lookup table (n-D)
,但这个块不会在列之间插入。我尝试将Interpolation Using Prelookup
块与块结合使用Prelookup
,但我不明白如何使用这些块。