Feeds
질문
provide the matlab code that will exactly locate the two intersectionss between the curves.
f = @(x) 0.5*x^2 - 3*x + 9; g = @(x) 10*exp(x/10); if method can be solved using fzero please use that
대략 10년 전 | 답변 수: 1 | 0
1
답변질문
The curves defined by f(x) = e^x and g(x) = 3x intersect at some point between x = 1 and x = 2. Give all of the Matlab code necessary to locate the point of intersection and output its x and y coordinates.
%i really have no idea where to begin f = @(x) exp(x); g = @(x) 3*x;
대략 10년 전 | 답변 수: 1 | 0
1
답변질문
Assuming the Gauss-Seidel technique (reminder: this is that one that updates as it goes along) and that x0 = [ 0 0 0 ]', what would x1 look like?
the attached file shows the set up of the question
대략 10년 전 | 답변 수: 0 | 0