How to search for header name and only pull that column as an array you can multiply

10 visualizaciones (últimos 30 días)
I have a table that includes my full csv (with headers) and I am hoping to search for a specific header name (cellSize) and pull that data into a structure I can multiply.

Respuesta aceptada

dpb
dpb el 3 de Ag. de 2020
If you loaded the .csv into a table with headers that are variable names, you don't need to search nor "pull" data -- just reference it directly.
newvar=t.cellSize*pi; % multiply cellSize table "t" variable by pi; store in array
t.newvar=t.cellSize*pi; % multiply cellSize table "t" variable by pi; store in new var in table "t"

Más respuestas (0)

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by