-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprogramming.html
More file actions
94 lines (91 loc) · 2.26 KB
/
programming.html
File metadata and controls
94 lines (91 loc) · 2.26 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Programming Resources on the Web</title>
<style>
body {
background-color: #ffffff;
color: #000000;
}
a:link {
color: #000099;
}
a:visited {
color: #ff0000;
}
a:hover {
color: #0000ff;
}
h2 {
color: #800000;
text-align: left;
}
</style>
</head>
<body>
<h2>Matlab Resources</h2>
<ul>
<li>
<a
href="http://www.mathworks.com/access/helpdesk/help/techdoc/matlab.shtml"
>Matlab: Documentation, Getting Started, etc.</a
>
</li>
<li>
<a href="http://math.ucsd.edu/%7Edriver/21d-s99/matlab-primer.html"
>Matlab Primer</a
>
</li>
<li>
<a href="http://www.mathworks.com/support/tech-notes/1100/1109.html"
>Vectorization Techniques</a
>
-- the right way to code in Matlab!
</li>
<li>
<a href="http://matlab.wikia.com/wiki/FAQ"
>Matlab Frequently Asked Questions</a
>
</li>
<li>
<a href="http://www.mathworks.com/moler/">MATLAB Math</a> by Cleve Moler
and Kathryn Moler
</li>
</ul>
<h2>Python Resources</h2>
<ul>
<li>
<a href="https://www.python.org/about/gettingstarted/"
>Getting Started With Python</a
>
</li>
<li>
<a href="https://wiki.python.org/moin/BeginnersGuide/Programmers"
>A list of Python Tutorials</a
>
</li>
<li>
<a
href="http://bastibe.de/2013-01-20-a-python-primer-for-matlab-users.html"
>Python</a
>
and
<a href="http://wiki.scipy.org/NumPy_for_Matlab_Users">Numpy</a>
Tutorials for MATLAB users
</li>
<li>
<a href="http://scikit-image.org/"
>Scikit-Image tutorial for image processing</a
>
</li>
<li>
<a
href="https://docs.opencv.org/4.x/d2/d96/tutorial_py_table_of_contents_imgproc.html"
>OpenCV tutorial for image processing</a
>
</li>
</ul>
</body>
</html>