Error in code, "Invalid expression. Check for missing multiplication operator, missing or unbalanced delimiters, or other syntax error. To construct matrices, use brackets instead of parentheses. "
显示 更早的评论
I'm trying to write in a derivative of f(t)= (1)/(55) (20π sin((1)/(11) π t) + 33ℯ^(-((3)/(10)) t) sin(2π t) - 220π ℯ^(-((3)/(10)) t) cos(2π t))
here's what I'm writting in:
Td=1/55*(20*pi*sin(1/11*pi*t)+33*exp(-3/10*t).*sin(2*pi*t)-220*pi*exp(-3/10*t).*cos(2*pi*t)) t;
回答(1 个)
the cyclist
2021-3-25
编辑:the cyclist
2021-3-25
You seem to have a rogue t at the end of your expression. If you get rid of that, then ...
Td=1/55*(20*pi*sin(1/11*pi*t)+33*exp(-3/10*t).*sin(2*pi*t)-220*pi*exp(-3/10*t).*cos(2*pi*t));
Note that in the MATLAB editor, a red squiggly line appeared under that t, indicating the syntax error.
类别
在 帮助中心 和 File Exchange 中查找有关 Symbolic Math Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!