Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のデータがあります。
T=[0,100,300]
と
a=[2.8796,2.8785,2.886]
Matlabaで何が得られるかを推定して知りたいです。T=600どうやってやるの?
a
T=600
線形補間の場合: aextra = interp1(T,a,600,'linear','extrap')
aextra = interp1(T,a,600,'linear','extrap')