This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module Zeros | |
| export fzero | |
| # the function fzero finds the root of a continuous function within a provided | |
| # interval [a, b], without requiring derivatives. | |
| # It is based on algorithm 4.2 described in: | |
| # 1. G. E. Alefeld, F. A. Potra, and Y. Shi, "Algorithm 748: enclosing zeros of | |
| # continuous functions," ACM Trans. Math. Softw. 21, 327–344 (1995). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| type quint{T} | |
| dx::T | |
| x0::T | |
| Y::Array{T,1} | |
| B::Array{T,1} | |
| C::Array{T,1} | |
| D::Array{T,1} | |
| E::Array{T,1} | |
| F::Array{T,1} | |
| function quint(X::Array{T,1}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module testsums | |
| export sum5, sum5b, dosums | |
| function sum5(scale, sa1, a1, sa2, a2, sa3, a3, sa4, a4, sa5, a5, out) | |
| for i=1:length(out) | |
| @inbounds out[i] = scale*(sa1*a1[i] + sa2*a2[i] + sa3*a3[i] | |
| + sa4*a4[i] + sa5*a5[i]) | |
| end | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module Vimba | |
| export make_get | |
| const vmblib = ENV["VIMBA_HOME"]*"VimbaC\\Bin\\Win64\\VimbaC" | |
| include("VmbCommonTypes.jl") | |
| function __init__() | |
| err = ccall((:VmbStartup, vmblib), stdcall, VmbError_t, ()) |