I have a question about to find an easy way for transforming a Matlab type vocabulary into the vocabulary of Mathematica. Maybe you can help me by an example from the book.
Thats how it works on Matlab and Octave:
Command Window:
a = 3;
v0 = 50/3.6;
t = {1, 2, 3}
v = v0 + a*t
by pressing enter it is related to the true function, but by visualization, i have to generate a vector on a graph. I'm sure, that it's very similar but I won't find the true symbolic fields to create that.
here is the example, how it would work on Matlab and also Octave:
Command Window:
t = 0:0.1:5;
v = v0 + a*t;
Plot [t,v,'b']
Axis{[0, 5, 0, 40]}
GridOn
xLabel['t in s']
yLabel['v in m/s']
The "'b'" stands that the graph is blue.
Thanks for any response!
Jias