initial
This commit is contained in:
36
CwJ/differentiable_vector_calculus/process.jl
Normal file
36
CwJ/differentiable_vector_calculus/process.jl
Normal file
@@ -0,0 +1,36 @@
|
||||
using WeavePynb
|
||||
using Mustache
|
||||
|
||||
mmd(fname) = mmd_to_html(fname, BRAND_HREF="../toc.html", BRAND_NAME="Calculus with Julia")
|
||||
## uncomment to generate just .md files
|
||||
#mmd(fname) = mmd_to_md(fname, BRAND_HREF="../toc.html", BRAND_NAME="Calculus with Julia")
|
||||
|
||||
|
||||
|
||||
|
||||
fnames = ["polar_coordinates",
|
||||
"vectors",
|
||||
"vector_valued_functions",
|
||||
"scalar_functions",
|
||||
"scalar_functions_applications",
|
||||
"vector_fields"
|
||||
]
|
||||
|
||||
function process_file(nm, twice=false)
|
||||
include("$nm.jl")
|
||||
mmd_to_md("$nm.mmd")
|
||||
markdownToHTML("$nm.md")
|
||||
twice && markdownToHTML("$nm.md")
|
||||
end
|
||||
|
||||
process_files(twice=false) = [process_file(nm, twice) for nm in fnames]
|
||||
|
||||
|
||||
"""
|
||||
## TODO differential_vector_calcululs
|
||||
|
||||
### Add questions for scalar_function_applications
|
||||
* Newton's method??
|
||||
* optimization. Find least squares for perpendicular distance using the same 3 points...??
|
||||
|
||||
"""
|
||||
Reference in New Issue
Block a user