Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a mathlab function that caculates e^-3x ? help me fix my code ----> function y= myexp (-3*x) %the goal is to calculate e^-3x ;
Write a mathlab function that caculates e^-3x ?
help me fix my code ---->
function y= myexp (-3*x)
%the goal is to calculate e^-3x ;
epsilon = 10^(-6);
RPE =1;
sum = 1;
k =1 ;
fprintf ( 'iteration \t\t exp(-3*x) t\t RPE ');
while RPE > epsilon
old_sum = sum;
sum = sum + (-3*x)^k/factorial(k);
fprintf ( ' %d \t\t\t %.6f \t\t %7f ',k,sum,RPE);
RPE = abs ((sum - old_sum)/sum);
k=k+1;
end
y = sum
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started