Skip to content

Commit d1675dd

Browse files
Corrected the misspelling of Lindberg in ghwt_tf_init_Lindberg and eghwt_init_Lindberg function in three files
1 parent d9fc99b commit d1675dd

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/GHWT_tf_2d.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ include("common.jl")
88

99
include("partition_fiedler.jl")
1010

11-
export ghwt_tf_init_2d, ghwt_tf_bestbasis_2d, ghwt_tf_synthesis_2d, ghwt_tf_init_2d_Linderberg, eghwt_init_2d, eghwt_bestbasis_2d, eghwt_synthesis_2d, eghwt_init_2d_Linderberg, BS2loc
11+
export ghwt_tf_init_2d, ghwt_tf_bestbasis_2d, ghwt_tf_synthesis_2d, ghwt_tf_init_2d_Lindberg, eghwt_init_2d, eghwt_bestbasis_2d, eghwt_synthesis_2d, eghwt_init_2d_Lindberg, BS2loc
1212

1313

1414

@@ -524,7 +524,7 @@ end
524524

525525

526526

527-
function ghwt_tf_init_2d_Linderberg(matrix::Matrix{Float64})
527+
function ghwt_tf_init_2d_Lindberg(matrix::Matrix{Float64})
528528
#Partition matrix recuisively using Dhillon's method
529529
m,n = size(matrix)
530530
GProws = regularhaar(m)
@@ -681,6 +681,6 @@ end
681681
const eghwt_init_2d = ghwt_tf_init_2d
682682
const eghwt_bestbasis_2d = ghwt_tf_bestbasis_2d
683683
const eghwt_synthesis_2d = ghwt_tf_synthesis_2d
684-
const eghwt_init_2d_Linderberg = ghwt_tf_init_2d_Linderberg
684+
const eghwt_init_2d_Lindberg = ghwt_tf_init_2d_Lindberg
685685

686686
end # of module GHWT_tf_2d

test/dissertations/yqshao/5/barbara.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ heatmap(matrix[row_zoom, col_zoom],ratio=1, yaxis =:flip, axis = false, color =
2121

2222

2323
### initialize the regular balanced binary partition and compute the expanding coefficients
24-
dmatrix, GProws, GPcols = ghwt_tf_init_2d_Linderberg(matrix)
24+
dmatrix, GProws, GPcols = ghwt_tf_init_2d_Lindberg(matrix)
2525

2626
### Compute the coefficients of different basis we will compare
2727
############# Haar

test/paperscripts/eGHWT_SPIE2019/4.2.1/barbara_Lindberg_Villemoes.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ heatmap(matrix[row_zoom, col_zoom],ratio=1, yaxis =:flip, axis = false, color =
2020

2121

2222
### initialize the regular balanced binary partition and compute the expanding coefficients
23-
dmatrix, GProws, GPcols = ghwt_tf_init_2d_Linderberg(matrix)
23+
dmatrix, GProws, GPcols = ghwt_tf_init_2d_Lindberg(matrix)
2424

2525
### Compute the coefficients of different basis we will compare
2626
############# Haar

0 commit comments

Comments
 (0)