Borrar filtros
Borrar filtros

Replace certain columns in a structure array

10 visualizaciones (últimos 30 días)
Tomer
Tomer el 15 de Mayo de 2024
Comentada: Tomer el 15 de Mayo de 2024
Hi. I have a structure array, Data, of size (1 x120). The 5th column of the field Data.Temp contains zeroes. I want to replace these zeroes with a number 20 from Data(30).Temp to Data(60).Temp. Also, I want to replace these zeroes from Data(61).Temp to Data(80).Temp with a number 24. I am unable to perform this operation. I kindly request some help from the community.

Respuesta aceptada

Walter Roberson
Walter Roberson el 15 de Mayo de 2024
[Data(30:60).Temperature] = deal(20);
[Data(61:80).Temperature] = deal(24);
  7 comentarios
Walter Roberson
Walter Roberson el 15 de Mayo de 2024
You renamed the field since the original posting.
Also it turns out that the fields contain arrays of data.
for K = 30:60; Data(K).Temp(:,5) = 20; end
for K = 61:80; Data(K).Temp(:,5) = 24; end
Tomer
Tomer el 15 de Mayo de 2024
@Walter Roberson: Thank you. It is working now.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Graphics Object Programming en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by