Borrar filtros
Borrar filtros

create a variable with multiple time steps

3 visualizaciones (últimos 30 días)
Hussein Kokash
Hussein Kokash el 17 de En. de 2023
Comentada: KSSV el 17 de En. de 2023
Hello,
Is there a way to create a variable that contains data with multiple time steps?
I have x and y coordinates of a plane where x*y is the total coordinates number, correpsondingly each coordinate has a velocity value v, suppose I have 100 time steps, how can I create a variable that contains the whole values of velocity at all time steps (x*y*100)?
Thank you!

Respuesta aceptada

KSSV
KSSV el 17 de En. de 2023
LEt (x,y) be your data and t be your time.
nx = length(x) ;
nt = length(t) ;
Z = zeros(nx*nx,nt) ; % it is a 2D matrix; each column saves x*y elements
  2 comentarios
Hussein Kokash
Hussein Kokash el 17 de En. de 2023
Thank you for your reply KSSV.
What about ny in Z = zeros(nx*nx,nt)?
KSSV
KSSV el 17 de En. de 2023
ny == nx right? (x,y) wil be of same size.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Modeling en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by