By Matlab only please By Matlab only please Evaluate the fol
By Matlab only please.. By Matlab only please
Evaluate the following triple integral analytically and using single applications of Simpson\'s 1/3 rule. For compute the percent relative error (epsilon_t). integral^2 _-2 integral^2 _0 integral^1 _-3 (x^3 - 3yz) dx dy dzSolution
integral3 is a function in matlab by using this function we can pass the limits of the x,y and z.
the function is depends on three variables x,y and z.
define the x,y and z varibales limits, you can pass directly limits to it.
clc;
clear all;
close all;
fun = @(x,y,z)(x*x*x - 3*y*z)
format long;
q = integral3(fun,-2,2,0,2,-3,1);
