t = 0:1:60 ; c = 1:100 ;
[T,C] = meshgrid(t,c) ;
Y = C.*exp(t) ;
surf(C,T,Y)
t = 0:1:60 ; c = 1:100 ;
[T,C] = meshgrid(t,c) ;
Y = C.*exp(t) ;
surf(C,T,Y)
%You can change C value as per desired range for c=1:1000
%Here shown for c 10 graphs only
t=0:.1:10; for c=1:1000 y=c*exp(t); plot(y); hold on end hold off;
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!