Finite Element Method 3-Numerical Analysis-MATLAB Code, Exercises of Mathematical Methods for Numerical Analysis and Optimization

This is solution to one of problems in Numerical Analysis. This is matlab code. Its helpful to students of Computer Science, Electrical and Mechanical Engineering. This code also help to understand algorithm and logic behind the problem. This code includes: Finite, Element, Method, Function, Algorithm, Code, Result, Equation, Calling, Nested

Typology: Exercises

2011/2012

Uploaded on 07/31/2012

saripella
saripella 🇮🇳

4.4

(132)

169 documents

1 / 1

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
function [res] = GG1(X,Y,A,B,C,I,I1,I2)
% This program is used by Finite Element Method
% (Algorithm 12.5).
res =
G1(X,Y)*(A(I,I1)+B(I,I1)*X+C(I,I1)*Y)*(A(I,I2)+B(I,I2)*X+C(I,I2)*Y);
docsity.com

Partial preview of the text

Download Finite Element Method 3-Numerical Analysis-MATLAB Code and more Exercises Mathematical Methods for Numerical Analysis and Optimization in PDF only on Docsity!

function [res] = GG1(X,Y,A,B,C,I,I1,I2) % This program is used by Finite Element Method % (Algorithm 12.5). res = G1(X,Y)(A(I,I1)+B(I,I1)X+C(I,I1)Y)(A(I,I2)+B(I,I2)X+C(I,I2)Y); 

docsity.com