如何定义变量而不为其赋值

时间:2014-04-13 19:21:17

标签: matlab

vo是集成表达式的上限,这是我想要预定义为没有值的变量的变量,因为它是我想要解决的变量。

其他一切都已定义。

%//a object's velocity is changing as a function of sine, the full cycle is 0=>speed=>0

vt=-((speed/2)*cos((2*pi/t0)*t)-(speed/2)))

%//integrate vt function so I can get distance which has given

distance=int(vt,t,0,t0)

%//the last step is I need to find how long does it takes the object to finish a full cycle of movement

time=solve(eqn,t0)

1 个答案:

答案 0 :(得分:0)

尝试在MATLAB中使用syms命令。 syms是符号数学工具箱的一部分,您可以预定义"变量"没有明确地解决它们。它们构成了你想要的数学表达的一部分。

一旦你制定了你想要的等式,就可以使用solve(正如你在帖子中已经使用的那样)为你解决变量。