Script: Indexing in function problem

3 visualizaciones (últimos 30 días)
Norbert Raducki
Norbert Raducki el 22 de Nov. de 2020
Comentada: Cris LaPierre el 26 de Nov. de 2020
Hi,
I want to creat a function like this:
c(t+1,i)= c(t,i)-1/(dx^2)*(-D*(c(t,i+1)-c(t,i))-(-D*(c(t,i)-c(t,i-1)))) to solve this by ode4
and I do it like this:
but it dosen't work. I don't now why. Could someone explain to my why it dosen't work and how to indexing in fuction, pleace?

Respuestas (1)

Cris LaPierre
Cris LaPierre el 22 de Nov. de 2020
Editada: Cris LaPierre el 24 de Nov. de 2020
Functions cannot be defined in the middle of your code. You will need to either place it at the bottom of your script, or in a separate file.
See this page for more.
  2 comentarios
Cris LaPierre
Cris LaPierre el 25 de Nov. de 2020
Editada: Cris LaPierre el 25 de Nov. de 2020
I could try to guess what your new code is, but it would be better if you shared your updated code first. Include the complete error message you are getting (all the red text), as well as what you are using for inputs to the function.
Cris LaPierre
Cris LaPierre el 26 de Nov. de 2020
The error is because none of your if statements evalute to be true, so dcdt is neer assigned a value. This is because the conditional expression in an If statements only work with a single result. You define i to be a vector of numbers in your function, so it is returning a vector of results to the conditional expression.
if i is intended to be proportional to time, best to use t instead. If it is to try to collect your resutls, know that, with ode45, you do not have to worry about collecting the results of each iteration. This is handled automatically for you by the ode solver.
While not exactly the same, you may find this example helpful in setting up your problem.

Iniciar sesión para comentar.

Categorías

Más información sobre Ordinary Differential Equations en Help Center y File Exchange.

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by