#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Tue Aug  6 15:28:43 2024

@author: sam
"""

import numpy as np
import matplotlib.pyplot as plt

x = np.linspace(-10,10)

plt.semilogy(x,np.exp(2*x))