matrix full of zeros
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Jessica Larry
el 28 de Abr. de 2020
Comentada: Ameer Hamza
el 28 de Abr. de 2020
load('air.txt')
Air.temp = air(:,1);
Air.press = air(:,2);
Air_R = 0.287;
for k = 1:length(air)
Air(k).vol = (Air_R*Air(k).temp)/Air(k).press;
end
I am using the ideal gas law to solve for volume and I made a structure with all the information needed (pressure, temperature). I am trying to make a subfield in that structure called vol (for volume) but the matrix that comes out as a result when I look at Air.vol is a maxtrix full of zeros and then colum 35 has all the values I need. Is there a way to minimize this so there's only one colum with the values I need?
0 comentarios
Respuesta aceptada
Ameer Hamza
el 28 de Abr. de 2020
Use element-wise division
Air(k).vol = (Air_R*Air(k).temp)./Air(k).press;
%^ add dot here
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Dynamic System Models en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!