Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Interpolation help please!
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/290358/image.png)
0 comentarios
Respuestas (1)
Jason Nicholson
el 5 de Mayo de 2020
clc; clear; close all;
t = [2 4 6 8 10];
x = [2 3 4 5 6];
y = [-1 2 1 3 -1];
F1 = griddedInterpolant(t,x);
F2 = griddedInterpolant(t,y);
F1(2.5)
F2(2.5)
% function plots
fplot(@(t) F1(t),[2,10])
figure;
fplot(@(t) F2(t), [2,10])
Click "Accept this Answer" if this helped you.
0 comentarios
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!