代码之家  ›  专栏  ›  技术社区  ›  Soyol

当x,xq:数值数组,y:字符串数组[closed]时,Matlab中的interp1(x,y,xq)

  •  0
  • Soyol  · 技术社区  · 6 年前

    有没有办法使用 interp1 作为 interp1(x,y,xq) 什么时候 x,xq :是数字数组,并且 y

    或者你能想出一个等价的矢量方法吗?

    我不想转换为表并使用 tablelookup 不过。

    x = [1, 3, 4, 7, 8];
    y = ["A", "A", "B", "C", "C"];
    xq = [2.5, 5, 6.7];
    
    1 回复  |  直到 6 年前
        1
  •  2
  •   CKT    6 年前

    我想你需要某种近邻或有序插补。在这种情况下,你可以使用 interp1 但是插入到 指数

    >> x = [1 3 4 7 8];
    >> y = ["hi" "hello" "bonjour" "hallo" "hola"];
    >> xq = [2 5 6];
    >> yq = y(interp1(x,1:length(x),xq,'nearest'))
    yq = 
      1×3 string array
        "hello"    "bonjour"    "hallo"