From: Robert H on
t=0:10;
h=4.898e-10*exp(-4.685e4.*t)+2*1.703*exp(-1.703e3.*t)*cos(1.837e3.*t+pi)
figure(103)
plot(t,h)

I have the dots for matrix multiply but still get an error. I am obviously missing something.

Can anyone help with this?

Thanks
From: Walter Roberson on
Robert H wrote:
> t=0:10;
> h=4.898e-10*exp(-4.685e4.*t)+2*1.703*exp(-1.703e3.*t)*cos(1.837e3.*t+pi)
> figure(103)
> plot(t,h)
>
> I have the dots for matrix multiply but still get an error. I am
> obviously missing something.

You missed the dot for element-wise multiplication between the exp() and the
cos().