Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Giving input x from different matrix?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
For computation of area the value of y1,y2 and y3 are coming from three different same dimension matrix and so I want to compute area of using this code for same matrix dimension as y1, y2 and y3?
x=[7.8 8.25 8.55];
y=[0.96 0.99 0.94];
p=polyfit(x,y,2);
t=linspace(x(1),x(3));
yhat=polyval(p,t);
a1=trapz(t,yhat);
How can I improve code for all 3*3 matrix of given y1,y2 and y3, result will be area a1 of 3*3 matrix.
1 comentario
Roger Stafford
el 27 de Mayo de 2013
I already gave you a formula for that identical question two weeks ago which avoids the 'trapz' operation. In that formula all you have to do is substitute x(1) for x1, x(2) for x2, and x(3) for x3. Then if y is your 3 x 3 array, substitute y(:,1) for y1, y(:,2) for y2, and y(:,3) for y3. What is so difficult about that?
Respuestas (0)
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!