Answered step by step
Verified Expert Solution
Question
1 Approved Answer
trying to get the second intercept on my matlab code. %Code for plotting cross sectional area. d=0:0.1:5; fx = -1*log(d + 0.01) + exp(d); gx
trying to get the second intercept on my matlab code.
%Code for plotting cross sectional area.
d=0:0.1:5;
fx = -1*log(d + 0.01) + exp(d);
gx = (-1*log(0 + 0.01)+exp(0));
y1=gx;
x1=-0.5;
x2=5;
trough= plot(d,fx,[x1, x2], [y1, y1]);
axis([-0.5 5 0 10]);
title(' Cross sectional Area Of Trough');
xlabel(' Horizontal Distance');
ylabel('Cross sectional Area');
min(fx);
Cross sectional Area Of Trough 10 0.5 0.5 1.5 2.5 3.5 4.5 Horizontal DistanceStep 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