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!