%=====================================================================
% 秋田高専 2E 情報工学概論 テキスト
%　　テーマ 浮動小数点と数値計算
%    本テキストの内容
%        ・
%        ・
%        ・
%        ・
%　　　 　・
%
% last updated 2006.2.5
%    created by  Masashi Yamamoto
%     e-mail yamamoto@akita-nct.jp
%=====================================================================
\documentclass[10pt,a4paper]{jarticle}
\usepackage{graphicx,amsmath,amssymb,ascmac,float}
\usepackage{html, listings, jlisting}
\usepackage{url}
\oddsidemargin 0mm  %左の余白 25.4mm-0mm　奇数ページ
\evensidemargin 0mm %左の余白 25.4mm-0mm　偶数ページ
\textwidth 160mm
\newcommand{\command}[1]{「\texttt{#1}」}
\newcommand{\cl}[1]{\texttt{#1}}
\newcommand{\tw}[1]{\texttt{#1}}
%
\newcounter{toi_num}
\newcommand{\toi}{\textbf{\texttt [問\arabic{toi_num}]}
   \addtocounter{toi_num}{1}}
%
\newcommand{\qbox}[2]{
{\fboxsep=0pt \fboxrule=0.4pt\fbox{\hspace{#1}#2\hspace{#1}}}
}
%
\renewcommand{\lstlistingname}{リスト}
\lstset{language=C,%
        basicstyle=\footnotesize,%
        commentstyle=\textit,%
        classoffset=1,%
        keywordstyle=\bfseries,%
	frame=tRBl,framesep=5pt,%
	showstringspaces=false,%
        numbers=left,stepnumber=1,numberstyle=\footnotesize%
	}%
%
\begin{htmlonly}
\usepackage{verbatimfiles}
 \providecommand{\lstinputlisting}[2][]{\verbatimlisting{#2}}
\end{htmlonly}
%
\begin{document}
\title{練習問題(gunplot)}
\author{山本昌志\thanks{独立行政法人　秋田工業高等専門学校　電気情報工学科}}
\date{2006年2月13日}
\maketitle
%
%
%=====================================================================
\section{練習問題}
%=====================================================================
\begin{quote}
 \begin{itemize}
  \item[\textbf{[練習1]}]以下の関数の二次元のグラフを作成せよ．
			 \begin{align*}
			  & \sin(x)\cos(x) &
			  & \sin^2(x) &
			  & \sin(x)+\cos(x) & \\
			  &xe^{-x}&
			  &x-\frac{x^3}{6}+\frac{x^5}{120}-\frac{x^7}{5040} &
			  &\cos(x),\,\sin(x)&  \\
			 \end{align*}
  \item[\textbf{[練習2]}]\htmladdnormallink{データ}{http://www.akita-nct.jp/~yamamoto/lecture/2005/2E/29th_ex/trigonometric.dat}をプロットせよ．
  \item[\textbf{[練習3]}]emfフォーマットの$\sin(x)$と$\cos(x)$のグラフを作成し，
			 それをStarsuiteに貼り付けよ．
  \item[\textbf{[練習4]}]$\sin(x)+\cos(x)$と$\sin(x)\cos(x)$の値を$2\pi/360$ずつ
			 計算し，ファイルに格納する．そして，それをグラフに表示
			 させるC言語のプログラムを完成せよ．
 \end{itemize}
\end{quote}
%=====================================================================
\end{document}
