using Matlab, plot N=10e^(30t) on i) a linear plot and ii) a log-linear plot.
`Hey,
Note: Brother if you have any queries related the answer please do comment. I would be very happy to resolve all your queries.
clc%clears screen
clear all%clears history
close all%closes all files
t=0:0.01:1;
N=10*exp(30*t);
plot(t,N);
title('Linear plot');
figure;
semilogy(t,N);
title('Log-Linear plot');

Kindly revert for any queries
Thanks.
using Matlab, plot N=10e^(30t) on i) a linear plot and ii) a log-linear plot.