Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update examples #10

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
4 changes: 3 additions & 1 deletion Extras/Dual Numbers.jl → Extras/Dual_Numbers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@
# changes in parameters
##

using DualNumbers
using ApproxFun
using LinearAlgebra

using DualNumbers, ApproxFun
# What is the derivative of the function (without differentiating the Chebyshev expansion)?
f=Fun(x->exp(dual(x,1)),-1..1)
dualpart(f)
Expand Down
File renamed without changes.
4 changes: 3 additions & 1 deletion Extras/GalerkinOrthogonalPolynomials.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using ApproxFun, Plots
using ApproxFun
using Plots
using LinearAlgebra

# In this example, we numerically compute with Galerkin orthogonal polynomials.
# If H is a separable Hilbert space and B contains ν linear functional constraints,
Expand Down
56 changes: 0 additions & 56 deletions Extras/Inverse eigenvalue problem.jl

This file was deleted.

60 changes: 60 additions & 0 deletions Extras/Inverse_eigenvalue_problem.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
using ApproxFun, LinearAlgebra, DualNumbers
import ApproxFun: bandwidth

#
# Consider the following Sturm--Liouville problem with polynomial p, q, and w.
#
# [(-𝒟)(p𝒟) + q] u = λ w u, (u±bu')(±1) = 0.
#
# For which value of b, the Neumann part of the Robin boundary conditions,
# is λ₀ equal to 1?
#
# To answer this question, we use a dual number to observe the sensitivity in λ₀
# with respect to perturbations in b. The `realpart` of the objective function
#
# f(λ(b)) = λ(b) - 1,
#
# extracts the difference, whereas the `dualpart` evaluates to ∂f/∂b (λ(b)).
#

function main()
n = 100
λ = dual(0.0, 0.0)
b = dual(0.0, 1.0)
v = zeros(Dual{Float64}, n)
v[1] = 1
v .+= 0.003.*randn(Float64, n)
for _ in 1:8
d = Segment(-1..1)
S = Ultraspherical(0.5, d)
NS = NormalizedPolynomialSpace(S)
D = Derivative(S)
p = Fun(x->1+x^2, S)
q = Fun(x->x^3, S)
L = -D*(p*D)+q
w = Fun(x->1+x/4, S)
M = Multiplication(w, S)
C = Conversion(domainspace(L), rangespace(L))
B = [Evaluation(S, -1, 0) - b*Evaluation(S, -1, 1); Evaluation(S, 1, 0) + b*Evaluation(S, 1, 1)]
QS = QuotientSpace(B)
Q = Conversion(QS, S)
D1 = Conversion(S, NS)
D2 = Conversion(NS, S)
R = D1*Q
P = cache(PartialInverseOperator(C, (0, bandwidth(L, 1) + bandwidth(R, 1) + bandwidth(C, 2))))
A = R'D1*P*L*D2*R
B = R'D1*M*D2*R
SA = Symmetric(A[1:n,1:n], :L)
SB = Symmetric(B[1:n,1:n], :L)
for _ = 1:7
global λ = dot(v, SA*v)/dot(v, SB*v)
ldiv!(ldlt!(SA-λ*SB), v)
global v = v/norm(v)
println("\tThis is λ: ", λ)
end
global b -= (realpart(λ)-1)/dualpart(λ)
println("This is b: ", b)
end
end

main()
File renamed without changes.
Loading