3

我想问你一些关于 Matlab 中插值的问题。我想知道是否可以在同一行中进行两种不同的插值。我的意思是,例如,在开始时进行线性插值,然后在中间大致进行另一种插值,例如样条。

主要问题是我做了一个线性插值,一开始它是完美的,但在某些时候,我认为另一种类型会更好。如果这是可能的,我如何编码我想改变它的地方?我试图检查有关 Matlab 的文档,但找不到任何有关修改插值的信息。

非常感谢提前和问候,

4

1 回答 1

3

请允许我详细说明我对您的帖子发表的评论。

如果要使用带有拆分的 2 个不同函数从输入数组创建输出数组,则可以使用数组索引范围,如下面的代码示例

x = randn(20,1); %//your input data - 20 random numbers for demonstration
threshold = 5; %//index where you want the change of algorithm
y = zeros(size(x)); %//output array of zeros the same size as input

y(1:threshold)     = fun1(x(1:threshold));
y(1+threshold:end) = fun2(x(1+threshold:end));

如果愿意,您可以跳过预分配,y只需将附加数据连接到输出的末尾。如果函数返回的输出元素数量与输入元素的数量不同,这将特别有用。其语法如下所示。

y = fun1(x(1:threshold));
y = [y; fun2(x(1+threshold:end))];

编辑:

为了回应您在下面的帖子,这里有一个完整的例子。. .

clc; close all

x = -5:5; %//your x-range
y = [1 1 0 -1 -1 0 1 1 1 1 1]; %//the function to interpolate
t = -5:.01:5; %//sampling interval for output

xIdx = 5; %//the index on the x-axis where you want the split to occur
tIdx = floor(numel(t)/numel(x)*xIdx);%//need to calculate as it is at a different sample rate

out = pchip(x(1:xIdx),y(1:xIdx),t(1:tIdx));
out = [out spline(x((1+xIdx):end),y((1+xIdx):end),t((1+tIdx):end))];

%//PLOTTING
plot(x,y,'o',t,out,'-',[x(xIdx) x(xIdx)], [-1.5 1.5], '-')
legend('data','output','split',4);
ylim ([-1.5 1.5])

哪个会给。. .

在此处输入图像描述

于 2012-09-12T11:52:52.740 回答