How can I write this code in matlab and have it run? ( all variables have been defined but it keeps giving me an error on this line)

1 次查看(过去 30 天)
ue = 1-4*sin((3*pi*x)/(2*L))*exp(-tmax(A/B))+4*sin((7*pi*x)/(2*L))*exp(-tmax(C/B))
  3 个评论
Adam Sabah
Adam Sabah 2019-11-5
编辑:Adam Sabah 2019-11-5
This is the matlab code that i have constructed. It ran earlier but now i can not seem to figure out what the issue is.
Steven Lord
Steven Lord 2019-11-5
What is the full and exact text of the error message you receive? Show all the text displayed in red as that might tell us exactly how to correct the error.

请先登录,再进行评论。

回答(1 个)

Robert U
Robert U 2019-11-5
Hi Adam Sabah,
when I run your code I get this error message:
ue = 1-4*sin((3*pi*x)/(2*L))*exp(-tmax(A/B))+4*sin((7*pi*x)/(2*L))*exp(-tmax(C/B));
!! Subscript indices must either be real positive integers or logicals.
Matlab tries to evaluate the expressions "tmax(A/B)" and "tmax(C/B)" as vector tmax at index A/B and C/B respectively. Since A/B and C/B are real numbers and not integers Matlab cannot determine the indices, despite the fact that tmax is scalar, and defined as 25. I assume you are missing multiplication signs.
Kind regards,
Robert

类别

Help CenterFile Exchange 中查找有关 Whos 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by