-
Notifications
You must be signed in to change notification settings - Fork 0
/
exercise.tex
57 lines (43 loc) · 1.46 KB
/
exercise.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
%% ***************************************************************
% Copyright (C) Luca Parolari 2020
%
%
% You should have received a copy of the license with this file,
% if not write to the author and request the license.
% !TeX spellcheck = it_IT
%\documentclass[addpoints,12pt]{exam}
\documentclass[addpoints,12pt,answers]{exam}
%% ***************************************************************
% PACKAGES
% ========
\input{packages.tex}
%% ***************************************************************
% RESOURCES
% =========
\input{prooftree.tex}
\input{macros.tex}
\input{config.tex}
%% ***************************************************************
% CONFIGURATIONS
% ==============
\input{exerciseconfig.tex}
% ****************************************************************
% DOCUMENT
% ========
\author{Luca Parolari\footnote{\href{mailto:[email protected]}{[email protected]}}}
\begin{document}
\title{Class Matrix}
\date{07/02/2020}
\maketitle
Leggere attentamente la consegna e svolgere l'esercizio.
\section{Consegna}
Progettare ed implementare il tipo di dato astratto matrice. L'ADT matrice deve offrire funzionalità come
\begin{itemize}
\item trasposta;
\item test diagonale, positiva, ecc
\item somma di due matrici
\item prodotto di due matrici
\item calcolo del determinante
\end{itemize}
\end{document}