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 visualización (últimos 30 días)
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 comentarios
Adam Sabah
Adam Sabah el 5 de Nov. de 2019
Editada: Adam Sabah el 5 de Nov. de 2019
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 el 5 de Nov. de 2019
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.

Iniciar sesión para comentar.

Respuestas (1)

Robert U
Robert U el 5 de Nov. de 2019
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

Community Treasure Hunt

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

Start Hunting!

Translated by