MATLAB을 이용한 알기 쉬운 수치해석) 2장 7번
% x - 1 = 1 이므로, zero = func(1); first = func(1) + first_diff_func(1); second = func(1) + first_diff_func(1) + second_diff_func(1)/2; third = func(1) + first_diff_func(1) + second_diff_func(1)/2 + 25; rel = func(2); first_error = abs((rel-first)/rel*100); second_error = abs((rel-second)/rel*100); third_error = abs((rel-third)/rel*100); fprintf("%f %f %f %f %f \n", zero, first, second, third, rel..
컴퓨터/MATLAB을 이용한 알기 쉬운 수치해석
2021. 5. 28.