Question: % Create data and 2 -by- 1 tiled chart layout x = linspace( 0 , 3 ); y1 = sin ( 5 * x );
% Create data and 2-by-1 tiled chart layout x = linspace(0,3); y1 = sin(5*x); y2 = sin(15*x); tiledlayout(2,1) % Top plot ax1 = nexttile; plot(ax1,x,y1) title(ax1,'Top Plot') ylabel(ax1,'sin(5x)') % Bottom plot ax2 = nexttile; plot(ax2,x,y2) title(ax2,'Bottom Plot') ylabel(ax2,'sin(15x)')
I need excel graphs for both the top and bottom plots in this data set. Could you show how.steps and data and graphs for each of the two data sets. (top and bottom)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
