Here is the code (both ways):
Code: Select all
\documentclass[11pt,a4paper]{article}
\usepackage{tabularx}
\begin{document}
\begin{tabularx}{\textwidth}{|X|X|X|}
\hline
\multicolumn{1}{|c|}{Screencast Title} & \multicolumn{1}{c|}{Matlab Topics Covered} & \multicolumn{1}{c|}{Reinforced Course Concepts} \\ \hline
%Screencast Title & Matlab Topics Covered & Reinforced Course Concepts\\
Representing and Plotting Basic Signals & Creating and Manipulating Arrays, Creating and Labeling plots using Stem and Plot Commands & Representing Discrete-Time and Continuous-Time Signals and Plotting Them\\
\hline
Adding Signals and Subplot Command & Adding Arrays, Sample Index, Creating and Labeling plots using Plot, Stem and Subplot commands, Labeling Using Data Cursor, Using Help menu resources effectively & Adding Discrete-Time and Continuous-Time Signals and Plotting Them\\
\hline
Multiplying Signals & Element by element multiplication versus scalar product & Multiplication of Discrete-Time and Continuous-Time Signals\\
\hline
Convolution of Signals & Manipulating arrays using the Conv command, selecting appropriate time increments, plotting & Finding the output of a Linear Time-Invariant System given input and impulse response, Properties of Convolution (Commutative, Distributive, Associative) \\
\hline
Finding Odd and Even Parts of Signals & Manipulating arrays using the fliplr command, Plotting, Hold Command & Odd and even components of a signal\\ \hline
\end{tabularx}
\begin{tabularx}{\textwidth}{|X|X|X|}
\hline
\multicolumn{1}{|c|}{\textbf{Screencast Title}} & \multicolumn{1}{c|}{\textbf{Matlab Topics Covered}} & \multicolumn{1}{c|}{\textbf{Reinforced Course Concepts}} \\ \hline
Representing and Plotting Basic Signals & Creating and Manipulating Arrays, Creating and Labeling plots using Stem and Plot Commands & Representing Discrete-Time and Continuous-Time Signals and Plotting Them\\
\hline
Adding Signals and Subplot Command & Adding Arrays, Sample Index, Creating and Labeling plots using Plot, Stem and Subplot commands, Labeling Using Data Cursor, Using Help menu resources effectively & Adding Discrete-Time and Continuous-Time Signals and Plotting Them\\
\hline
Multiplying Signals & Element by element multiplication versus scalar product & Multiplication of Discrete-Time and Continuous-Time Signals\\
\hline
Convolution of Signals & Manipulating arrays using the Conv command, selecting appropriate time increments, plotting & Finding the output of a Linear Time-Invariant System given input and impulse response, Properties of Convolution (Commutative, Distributive, Associative) \\
\hline
Finding Odd and Even Parts of Signals & Manipulating arrays using the fliplr command, Plotting, Hold Command & Odd and even components of a signal\\ \hline
\end{tabularx}
\end{document}
Thanks!
Dave