# -*- coding: utf-8 -*-
"""
Created on Mon Aug  1 14:10:53 2022

@author: Chris
"""
import numpy as np
import matplotlib.pyplot as plt

x = np.linspace(0,4,100)
f = np.exp(2*x)
plt.semilogy(x,f)
plt.xlabel('x')
plt.ylabel('exp(2x)')