q8-which graph represents the plot of the following function "s=" 4๐ ๐๐ (7๐ก+5)+โ(6๐ก+2) ๐๐ฃ๐๐ 0โค๐กโค5 in matlab
main.m
% Define the functions = @(t) 4*sin(7*t + 5) + sqrt(6*t + 2);
% Create an array of t values from 0 to 5t = 0:0.1:5;
% Calculate the corresponding s valuess_values = arrayfun(s, t);
% Plot the functionplot(t, s_values);
xlabel('t');
ylabel('s');
title('Plot of the function s(t)');