我是靠谱客的博主 精明机器猫,最近开发中收集的这篇文章主要介绍插值函数 interp1 interp2,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1、一维插值 interp1

clc;
clear;
close all;

x0=0:1:2*pi;
y0=sin(x0);

x=0:0.5:2*pi;

y = interp1(x0,y0,x,'spline');

figure(1);
plot(x0,y0);hold on;plot(x,y);
grid on;
xlabel('x0');ylabel('y0');title("һά²喵");legend('y0','y');

在这里插入图片描述

2、二维插值 interp2

   搜索域:

   横坐标范围col (-5) ~ (+5)
   纵坐标范围row (-3) ~ (+3)

   值域:

   与上述搜索范围一一对应

   搜索坐标:

   ( x, y)

   返回值:

   搜索坐标在搜索域内取得的值

clc;
clear;
close all;

col = -5:5;
row = -3:3;
[map_x, map_y] = meshgrid(col,row);

for i=1:length(row)
    for j=1:length(col)
        region(i,j) = ((i-1)*length(col)+j)*10;
    end
end

region

%% x:(-5 5)   y:(-3 3)
x=2.4;
y=2.5;
if x>5
    x=5;
elseif x<-5
    x=-5;
end

if y>3
    y=3;
elseif y<-3
    y=-3;
end
    
value = interp2(map_x, map_y, region, x, y);

fprintf("search (%d, %d) : %dn", x, y, value);


simulink中使用的插值模块: Lookup Tables

最后

以上就是精明机器猫为你收集整理的插值函数 interp1 interp2的全部内容,希望文章能够帮你解决插值函数 interp1 interp2所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(39)

评论列表共有 0 条评论

立即
投稿
返回
顶部