Assigning values to a matrix

2 visualizaciones (últimos 30 días)
Daniel Gaggini
Daniel Gaggini el 6 de Abr. de 2022
Editada: Daniel Gaggini el 7 de Abr. de 2022
I have a file called Height which I have imported into MATLAB and I am looking to see when the first value increases by 5
I would then like to assign 1 next to the point where the first value (of Height) increases by 5, or the 0 where it does not increase.
I also have a file for X and Y.
I would then like to combine the three files and the value for H into a matrix like the table below.
This is the code I have so far, but I only get a value of 1 instead of a value of 1 or 0 at the location where Height increased by 5.
Height = Height(1,:)
if Height > 5;
H = 1;
elseif Height < 5;
H = 0;
end;
If anyone has any ideas that would be greatly appreciated.

Respuesta aceptada

David Hill
David Hill el 6 de Abr. de 2022
I assume you have a table, T.
T.Height=T.Height>5;
  1 comentario
Daniel Gaggini
Daniel Gaggini el 7 de Abr. de 2022
Editada: Daniel Gaggini el 7 de Abr. de 2022
Thank you for your help I have been able to solve this problem now.
I have attached the code below, for anyone looking for a solution to a similiar problem.
Applied_Height = Height - Height(1,:);
Working_Height = abs(Applied_Height);
Changing_Height_Position(Working_Height>=5)=1;
Height = Changing_Height_Position'
New_Array = [x,y,Height]

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Data Import from MATLAB en Help Center y File Exchange.

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by