Gitiles
Code Review
Sign In
gerrit.avm99963.com
/
edu
/
lab-termodinamica
/
7ca4571785052f797b3e09561a616064ef7699ca
/
.
/
p7
/
numericalintegration
/
main2.m
blob: b4ff19f355fb7d7e8919b6efe79b26f599b512df [
file
] [
log
] [
blame
]
M
=
dlmread
(
'../data/escalfant_integration.dat'
);
d
=
@(
t
)
(
4.053e-08
*
t
^
2
+
9.445e-06
*
t
+
5.368e-01
);
x
=
M
(:,
1
);
y
=
M
(:,
2
);
for
i
=
1
:
size
(
y
,
1
)
y
(
i
)
=
y
(
i
)
-
d
(
x
(
i
));
end
trapz
(
x
,
y
)