2022-02-04 01:14:51 +00:00
|
|
|
import { Heading, Chapter, Box, Idiomatic as I, Panel, ListUnordered } from "@steffo/bluelib-react";
|
2022-06-28 17:13:40 +00:00
|
|
|
import { NextPage, NextPageContext } from "next";
|
2022-02-04 01:14:51 +00:00
|
|
|
import { Link } from "../../../components/link";
|
2022-02-04 17:41:40 +00:00
|
|
|
import { Warn1024 } from "../../../components/warn";
|
2022-02-04 01:14:51 +00:00
|
|
|
|
|
|
|
|
2022-06-28 17:13:40 +00:00
|
|
|
export async function getStaticProps(_context: NextPageContext) {
|
|
|
|
return {
|
|
|
|
props: {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-02-04 01:14:51 +00:00
|
|
|
const Page: NextPage = () => {
|
|
|
|
return <>
|
|
|
|
<Heading level={2}>
|
|
|
|
Calcolo numerico
|
|
|
|
</Heading>
|
|
|
|
<Chapter>
|
|
|
|
<Box>
|
|
|
|
<Heading level={3}>
|
|
|
|
Premessa
|
|
|
|
</Heading>
|
|
|
|
<p>
|
|
|
|
<I>Calcolo numerico</I> credo sia il corso per il quale ho realizzato il materiale più dettagliato.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Avere tutto schematizzato mi ha permesso di apprendere facilmente tutti i concetti!
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Non ho però realizzato nessun materiale su MATLAB, in quanto esistevano già numerose guide su Internet a riguardo...
|
|
|
|
</p>
|
|
|
|
</Box>
|
|
|
|
</Chapter>
|
|
|
|
<Chapter>
|
|
|
|
<Box>
|
|
|
|
<Heading level={3}>
|
|
|
|
Materiale raccolto
|
|
|
|
</Heading>
|
|
|
|
<Chapter>
|
|
|
|
<Panel>
|
|
|
|
<Heading level={4}>
|
|
|
|
Appuntiweb
|
|
|
|
</Heading>
|
2022-02-04 17:41:40 +00:00
|
|
|
<Warn1024/>
|
2022-02-04 01:14:51 +00:00
|
|
|
<ListUnordered>
|
|
|
|
<ListUnordered.Item>
|
|
|
|
<Link href="/year2/calcolo/teoria">
|
|
|
|
Appunti di teoria
|
|
|
|
</Link>
|
|
|
|
</ListUnordered.Item>
|
|
|
|
</ListUnordered>
|
|
|
|
</Panel>
|
|
|
|
</Chapter>
|
|
|
|
</Box>
|
|
|
|
</Chapter>
|
|
|
|
</>
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Page
|