l-in- (x2-1)(x-2) Compute the 10th -order derivative of function y(x)- c) Vx-3)(x3-4) Show the CPU time that Matlab takes to solve this problem. Show transcribed image text l-in- (x2-1)(x-2) Compute the 10th -order derivative of function y(x)- c) Vx-3)(x3-4) Show the CPU time that Matlab takes to solve this problem.
Answer
`Hey,
Note: Brother in case of any queries, just comment inbox I would be very happy to assist all your queries
close all
clear all
clc
syms y(x)
y(x)=sqrt((x^2-1)*(x-2)/((x-3)*(x^3-4)));
tic;
diff(y,10)
toc
Kindly
OR
OR