matlab中如何表示f(t)当t=0时为值a

问题描述:

matlab中如何表示f(t)当t=0时为值a

你可以这样:
f=inline('2*t','t');
a=f(0)