SlideShare ist ein Scribd-Unternehmen logo
1 von 26
GGrreeaatt PPyyrraammiidd ooff GGiizzaa aanndd 
GGoollddeenn SSeeccttiioonn TTrraannssffoorrmm 
PPrreevviieeww 
Jun Li 
http://GoldenSectionTransform.com/ 
http://en.wikipedia.org/wiki/Great_Pyramid_of_Giza
Introduction 
The Great Pyramid of Giza (also known as the Pyramid of 
Khufu or the Pyramid of Cheops) is the oldest and largest of 
the three pyramids in the Giza Necropolis bordering what is 
now El Giza, Egypt. It is the oldest of the Seven Wonders of 
the Ancient World, and the only one to remain largely intact. 
In mathematics, Golden Section Transform is a new class of 
discrete orthogonal transform. Its theory involves golden 
ratio, Fibonacci number, Fourier analysis, wavelet theory, 
stochastic process, integer partition, matrix analysis, group 
theory, combinatorics on words, its applied fields include 
digital signal (image/audio/video) processing, denoising, 
watermarking, compression, coding and so on. see here.
Are there any connections 
http://en.wikipedia.org/wiki/Great_Pyramid_of_Giza 
1-level normalized reverse order 
Low Golden Section Transform(RLGST)
between Great Pyramid and 
RLGST? 
http://en.wikipedia.org/wiki/Johannes_Kepler
http://en.wikipedia.org/wiki/Fibonacci
The answer is ... 
to be contiued on: 
http://GoldenSectionTransform.org/
RLGST Matlab Implementation 
rlgst2d.m % forward 2d reverse order low golden section transform 
irlgst2d.m % inverse 2d reverse order low golden section transform 
testrlgstfn.m % 2d RLGST demo 
all the codes can be downloaded here: 
http://goldensectiontransform.org/lifting-scheme-reverse-order-low-golden-section- 
transform-matlab-part/
rlgst2d.m 
function H = rlgst2d(X,nlevel) 
% Author: Jun Li, more info@ http://goldensectiontransform.org/ 
% the lifting scheme of 2d reverse order low golden section transform 
% here matrix X is of Fn*Fn where Fn is a fibonacci number Fn>=2. 
% Wythoff sequence is used here, no need to call function_lword. 
global lj; % only used by function rlgst1d(S) below. 
global FBL; % only used by function rlgst1d(S) below. 
[xx,yy] = size(X); 
ind = floor(log(xx*sqrt(5)+1/2)/log((sqrt(5)+1)/2)); % determine index 
FBL = filter(1,[1 -1 -1],[1 zeros(1,ind-1)]); 
% FBL = Fibonacci sequence -> [1 1 2 3 5 8...]; 
H=X; 
for lj=1:nlevel 
for j=1:xx 
[ss,dd] = rlgst1d(H(j,1:yy)); % row transform 
H(j,1:yy) = [ss,dd]; 
end 
for k=1:yy 
[ss,dd] = rlgst1d(H(1:xx,k)'); % column transform 
H(1:xx,k) = [ss,dd]'; 
end 
xx = FBL(end-lj); % round((sqrt(5)-1)/2*xx); 8*8 block: xx=8->5->3->2 
yy = FBL(end-lj); % round((sqrt(5)-1)/2*yy); 8*8 block: yy=8->5->3->2 
end 
%% 1d reverse order low golden section transform lifting scheme 
function [ss,dd] = rlgst1d(S) 
%% Author: Jun Li, more info@ http://goldensectiontransform.org/ 
global lj; 
global FBL; 
for i=1:FBL(end-lj-1) 
lw = floor((1+sqrt(5))/2*i); % Lower Wythoff sequence->1,3,4,6,8... 
% uw = floor((3+sqrt(5))/2*i); % Upper Wythoff sequence->2,5,7,10,13... 
uw = lw + i; 
% ss(lw) = (sqrt(FBL(lj+1))*S(uw-1)+sqrt(FBL(lj))*S(uw))/sqrt(FBL(lj+2)); 
% dd(i) = (sqrt(FBL(lj))*S(uw-1)-sqrt(FBL(lj+1))*S(uw))/sqrt(FBL(lj+2)); 
%% we can use lifting scheme here: 
ga = sqrt(FBL(lj+1)/FBL(lj)); 
gb = sqrt(FBL(lj)*FBL(lj+1))/FBL(lj+2); 
gc = sqrt(FBL(lj+2)/FBL(lj)); 
d1 = S(uw-1) - ga*S(uw); 
s1 = S(uw) + gb*d1; 
ss(lw) = gc*s1; 
dd(i) = d1/gc; 
if (FBL(end-lj) ~= 1) & (i <= FBL(end-lj-2)) 
ss(uw) = S(lw+uw); 
end 
end
irlgst2d.m 
function X = irlgst2d(H,nlevel) 
% Author: Jun Li, more info@ http://goldensectiontransform.org/ 
% the lifting scheme of inverse 2d reverse order low golden section transform 
% here matrix H is of Fn*Fn where Fn is a fibonacci number Fn>=2. 
% Wythoff sequence is used here, no need to call function_lword. 
global lji; % only used by function irlgst1d(S) below. 
global FBLI; % only used by function irlgst1d(S) below. 
[xx,yy] = size(H); 
ind = floor(log(xx*sqrt(5)+1/2)/log((sqrt(5)+1)/2)); % determine index 
FBLI = filter(1,[1 -1 -1],[1 zeros(1,ind-1)]); 
% FBLI = Fibonacci sequence -> [1 1 2 3 5 8...]; 
X=H; 
for lji=nlevel:-1:1 
for j=1:FBLI(end-lji+1) 
ss = X(1:FBLI(end-lji),j); 
dd = X(FBLI(end-lji)+1:FBLI(end-lji+1),j); 
X(1:FBLI(end-lji+1),j) = irlgst1d(ss',dd')'; % inverse column transform 
end 
for k=1:FBLI(end-lji+1) 
ss = X(k,1:FBLI(end-lji)); 
dd = X(k,FBLI(end-lji)+1:FBLI(end-lji+1)); 
X(k,1:FBLI(end-lji+1)) = irlgst1d(ss,dd); % inverse row transform 
end 
end 
%% inverse 1d reverse order low golden section transform lifting scheme 
function S = irlgst1d(ss,dd) 
%% Author: Jun Li, more info@ http://goldensectiontransform.org/ 
global lji; 
global FBLI; 
for i=1:FBLI(end-lji-1) 
lw = floor((1+sqrt(5))/2*i); % Lower Wythoff sequence->1,3,4,6,8... 
% uw = floor((3+sqrt(5))/2*i); % Upper Wythoff sequence->2,5,7,10,13... 
uw = lw + i; 
% S(uw-1) = (sqrt(FBLI(lji+1))*ss(lw)+sqrt(FBLI(lji))*dd(i))/sqrt(FBLI(lji+2)); 
% S(uw) = (sqrt(FBLI(lji))*ss(lw)-sqrt(FBLI(lji+1))*dd(i))/sqrt(FBLI(lji+2)); 
%% we can use lifting scheme here: 
ga = sqrt(FBLI(lji+1)/FBLI(lji)); 
gb = sqrt(FBLI(lji)*FBLI(lji+1))/FBLI(lji+2); 
gc = sqrt(FBLI(lji+2)/FBLI(lji)); 
d1 = gc*dd(i); 
s1 = ss(lw)/gc; 
S(uw) = s1 - gb*d1; 
S(uw-1) = d1 + ga*S(uw); 
if (FBLI(end-lji) ~= 1) & (i <= FBLI(end-lji-2)) 
S(lw+uw) = ss(uw); 
end 
end
testrlgstfn.m 
function testrlgstfn 
% load 8 bit lena of size 377*377 
X = im2double(imread('C:lena377.bmp')); 
[xx,yy] = size(X); 
nlevel = 1; 
H = rlgst2d(X,nlevel); 
imshow(H); 
title([num2str(nlevel),'-level normalized reverse order low golden section transform of',' Lena 
',num2str(xx),'*',num2str(yy)]); 
% R = irlgst2d(H,nlevel); 
% EQ = isequal(round(X*255),round(R*255)) % Perfect Reconstruction 
imwrite(H,'rlgstlena377.png','png');
Example: Lena 377*377
Pyramid 377*377
Pyramid 377*377
Links 
Jun Li's Golden Section Transform Home Page 
http://goldensectiontransform.org/ & goldensectiontransform.com 
facebook: https://www.facebook.com/goldensectiontransform 
twitter: @JasonLiJun 
http://en.wikipedia.org/wiki/Great_Pyramid_of_Giza 
http://en.wikipedia.org/wiki/Kepler_triangle 
http://blog.world-mysteries.com/science/the-great-pyramid-and-the-speed-of-light/ 
http://www.wanttoknow.nl/hoofdartikelen/mysterieuze-krachten-van-piramide-structuren/ 
http://ifdawn.com/esa/tipharet.htm 
http://jwilson.coe.uga.edu/EMAT6680/Parveen/ancient_egypt.htm 
http://portal.groupkos.com/index.php?title=Great_Pyramid_Dimensions 
http://www.cheops-pyramide.ch/khufu-pyramid/pyramid-alignment.html 
http://www.crystalinks.com/greatpyramid.html 
http://www.cut-the-knot.org/do_you_know/GoldenRatio.shtml 
http://www.gizapyramid.com/overview.htm 
http://www.goldennumber.net/phi-pi-great-pyramid-egypt/ 
http://www.grahamhancock.com/forum/KollerstromN2.php 
http://www.maths.surrey.ac.uk/hosted-sites/R.Knott/Fibonacci/fibInArt.html 
http://www.sacred-geometry.es/en/content/phi-great-pyramid 
http://www.sriyantraresearch.com/Article/GoldenRatio/golden%20ratio%20triangles.html 
http://www.world-mysteries.com/mpl_2.htm 
https://brilliant.org/discussions/thread/the-golden-ratio-kepler-triangle/ 
https://www.dartmouth.edu/~matc/math5.geometry/unit2/unit2.html 
http://www.maths.surrey.ac.uk/hosted-sites/R.Knott/Fibonacci/fibrab.html 
http://en.wikipedia.org/wiki/Fibonacci_word 
http://mathworld.wolfram.com/RabbitSequence.html 
The infinite Fibonacci word, https://oeis.org/A005614 
Lower Wythoff sequence, http://oeis.org/A000201 
Upper Wythoff sequence, http://oeis.org/A001950
Reverse Order High Golden Section 
Transform (RHGST) 
Jun Li
RHGST of Pyramid
References 
[1] Jun. Li (2007). "Golden Section Method Used in Digital Image Multi-resolution Analysis". 
Application Research of Computers (in zh-cn) 24 (Suppl.): 1880–1882. ISSN 1001- 
3695;CN 51-1196/TP 
[2] I. Daubechies and W. Sweldens, "Factoring wavelet transforms into lifting schemes," J. 
Fourier Anal. Appl., vol. 4, no. 3, pp. 247-269, 1998. 
[3] Ingrid Daubechies. 1992. Ten Lectures on Wavelets. Soc. for Industrial and Applied 
Math., Philadelphia, PA, USA. 
[4] Sun, Y.K.(2005). Wavelet Analysis and Its Applications. China Machine Press. ISBN 
7111158768 
[5] Jin, J.F.(2004). Visual C++ Wavelet Transform Technology and Engineering Practice. 
Posts & Telecommunications Press. ISBN 7115119597 
[6] He, B.;Ma, T.Y.(2002). Visual C++ Digital Image Processing. Posts & Telecommunications 
Press. ISBN 7115109559 
[7] V. Britanak, P. Yip, K. R. Rao, 2007 Discrete Cosine and Sine Transform, General 
properties, Fast Algorithm and Integer Approximations" Academic Press 
[8] K. R. Rao and P. Yip, Discrete Cosine Transform: Algorithms, Advantages, Applications, 
Academic Press, Boston, 1990. 
[9] J. Nilsson, On the entropy of random Fibonacci words, arXiv:1001.3513. 
[10] J. Nilsson, On the entropy of a family of random substitutions, Monatsh. Math. 168 
(2012) 563–577. arXiv:1103.4777.
[11] J. Nilsson, On the entropy of a two step random Fibonacci substitution, Entropy 15 
(2013) 3312—3324; arXiv:1303.2526. 
[12] Wai-Fong Chuan, Fang-Yi Liao, Hui-Ling Ho, and Fei Yu. 2012. Fibonacci word patterns 
in two-way infinite Fibonacci words. Theor. Comput. Sci. 437 (June 2012), 69-81. 
DOI=10.1016/j.tcs.2012.02.020 http://dx.doi.org/10.1016/j.tcs.2012.02.020 
[13] Julien Cassaigne (2008). On extremal properties of the Fibonacci word. RAIRO - 
Theoretical Informatics and Applications, 42, pp 701-715. doi:10.1051/ita:2008003. 
[14] Wojciech Rytter, The structure of subword graphs and suffix trees of Fibonacci words, 
Theoretical Computer Science, Volume 363, Issue 2, 28 October 2006, Pages 211-223, 
ISSN 0304-3975, http://dx.doi.org/10.1016/j.tcs.2006.07.025. 
[15] Alex Vinokur, Fibonacci connection between Huffman codes and Wythoff array, 
arXiv:cs/0410013v2 
[16] Vinokur A.B., Huffman trees and Fibonacci numbers. Kibernetika Issue 6 (1986) 9-12 (in 
Russian), English translation in Cybernetics 22 Issue 6 (1986) 692–696; 
http://springerlink.metapress.com/link.asp?ID=W32X70520K8JJ617 
[17] L. Colussi, Fastest Pattern Matching in Strings, Journal of Algorithms, Volume 16, Issue 
2, March 1994, Pages 163-189, ISSN 0196-6774, 
http://dx.doi.org/10.1006/jagm.1994.1008. 
[18] Ron Lifshitz, The square Fibonacci tiling, Journal of Alloys and Compounds, Volume 
342, Issues 1–2, 14 August 2002, Pages 186-190, ISSN 0925-8388, 
http://dx.doi.org/10.1016/S0925-8388(02)00169-X. 
[19] C. Godr`eche, J. M. Luck, Quasiperiodicity and randomness in tilings of the plane, 
Journal of Statistical Physics, Volume 55, Issue 1–2, pp. 1–28. 
[20] S. Even-Dar Mandel and R. Lifshitz. Electronic energy spectra and wave functions on 
the square Fibonacci tiling. Philosophical Magazine, 86:759-764, 2006.
[21] S. Goedecker. 1997. Fast Radix 2, 3, 4, and 5 Kernels for Fast Fourier Transformations 
on Computers with Overlapping Multiply--Add Instructions. SIAM J. Sci. Comput. 18, 6 
(November 1997), 1605-1611. DOI=10.1137/S1064827595281940 
http://dx.doi.org/10.1137/S1064827595281940 
[22] Bashar, S.K., "An efficient approach to the computation of fast fourier transform(FFT) 
by Radix-3 algorithm," Informatics, Electronics & Vision (ICIEV), 2013 International 
Conference on , vol., no., pp.1,5, 17-18 May 2013 
[23] Lofgren, J.; Nilsson, P., "On hardware implementation of radix 3 and radix 5 FFT 
kernels for LTE systems," NORCHIP, 2011 , vol., no., pp.1,4, 14-15 Nov. 2011 
[24] Prakash, S.; Rao, V.V., "A new radix-6 FFT algorithm," Acoustics, Speech and Signal 
Processing, IEEE Transactions on , vol.29, no.4, pp.939,941, Aug 1981 
[25] Suzuki, Y.; Toshio Sone; Kido, K., "A new FFT algorithm of radix 3,6, and 12," 
Acoustics, Speech and Signal Processing, IEEE Transactions on , vol.34, no.2, 
pp.380,383, Apr 1986 
[26] Dubois, E.; Venetsanopoulos, A., "A new algorithm for the radix-3 FFT," Acoustics, 
Speech and Signal Processing, IEEE Transactions on , vol.26, no.3, pp.222,225, Jun 
1978 
[27] S. Goedecker. 1997. Fast Radix 2, 3, 4, and 5 Kernels for Fast Fourier Transformations 
on Computers with Overlapping Multiply--Add Instructions. SIAM J. Sci. Comput. 18, 6 
(November 1997), 1605-1611. DOI=10.1137/S1064827595281940 
http://dx.doi.org/10.1137/S1064827595281940 
[28] Huazhong Shu; XuDong Bao; Toumoulin, C.; Limin Luo, "Radix-3 Algorithm for the Fast 
Computation of Forward and Inverse MDCT," Signal Processing Letters, IEEE , vol.14, 
no.2, pp.93,96, Feb. 2007 
[29] Guoan Bi; Yu, L.W., "DCT algorithms for composite sequence lengths," Signal 
Processing, IEEE Transactions on , vol.46, no.3, pp.554,562, Mar 1998 
[30] Yuk-Hee Chan; Wan-Chi Siu,, "Fast radix-3/6 algorithms for the realization of the 
discrete cosine transform," Circuits and Systems, 1992. ISCAS '92. Proceedings., 1992 
IEEE International Symposium on , vol.1, no., pp.153,156 vol.1, 10-13 May 1992
[31] Yiquan Wu; Zhaoda Zhu, "New radix-3 fast algorithm for the discrete cosine transform," 
Aerospace and Electronics Conference, 1993. NAECON 1993., Proceedings of the IEEE 
1993 National , vol., no., pp.86,89 vol.1, 24-28 May 1993 
[32] Huazhong Shu; XuDong Bao; Toumoulin, C.; Limin Luo, "Radix-3 Algorithm for the Fast 
Computation of Forward and Inverse MDCT," Signal Processing Letters, IEEE , vol.14, 
no.2, pp.93,96, Feb. 2007 
[33] Yuk-Hee Chan; Wan-Chi Siu,, "Mixed-radix discrete cosine transform," Signal 
Processing, IEEE Transactions on , vol.41, no.11, pp.3157,3161, Nov 1993 
[34] Yuk-Hee Chan; Wan-Chi Siu,, "Fast radix-3/6 algorithms for the realization of the 
discrete cosine transform," Circuits and Systems, 1992. ISCAS '92. Proceedings., 1992 
IEEE International Symposium on , vol.1, no., pp.153,156 vol.1, 10-13 May 1992 
[35] Jiasong Wu; Lu Wang; Senhadji, L.; Huazhong Shu, "Improved radix-3 decimation-in-frequency 
algorithm for the fast computation of forward and inverse MDCT," Audio 
Language and Image Processing (ICALIP), 2010 International Conference on , vol., no., 
pp.694,699, 23-25 Nov. 2010 
[36] Sanchez, V.; Garcia, P.; Peinado, AM.; Segura, J.C.; Rubio, AJ., "Diagonalizing 
properties of the discrete cosine transforms," Signal Processing, IEEE Transactions 
on , vol.43, no.11, pp.2631,2641, Nov 1995 
[37] Lun, Daniel Pak-Kong; Wan-Chi Siu,, "Fast radix-3/9 discrete Hartley transform," Signal 
Processing, IEEE Transactions on , vol.41, no.7, pp.2494,2499, Jul 1993 
[38] Huazhong Shu; Jiasong Wu; Chunfeng Yang; Senhadji, L., "Fast Radix-3 Algorithm for 
the Generalized Discrete Hartley Transform of Type II," Signal Processing Letters, IEEE , 
vol.19, no.6, pp.348,351, June 2012 
[39] Prabhu, K.M.M.; Nagesh, A., "New radix-3 and 6 decimation-in-frequency fast Hartley 
transform algorithms," Electrical and Computer Engineering, Canadian Journal of , 
vol.18, no.2, pp.65,69, April 1993 
[40] Sorensen, H.V.; Jones, D.L.; Burrus, C.S.; Heideman, M., "On computing the discrete 
Hartley transform," Acoustics, Speech and Signal Processing, IEEE Transactions on , 
vol.33, no.5, pp.1231,1238, Oct 1985
[41] Wu, J.S.; Shu, H.Z.; Senhadji, L.; Luo, L.M., "Radix-3-3 Algorithm for The 2-D Discrete 
Hartley Transform," Circuits and Systems II: Express Briefs, IEEE Transactions on , 
vol.55, no.6, pp.566,570, June 2008 
[42] Prabhu, K. M M, "An efficient radix-3 FHT algorithm," Digital Signal Processing 
Proceedings, 1997. DSP 97., 1997 13th International Conference on , vol.1, no., 
pp.349,351 vol.1, 2-4 Jul 1997 
[43] Zhao, Z.-J., "In-place radix-3 fast Hartley transform algorithm," Electronics Letters , 
vol.28, no.3, pp.319,321, 30 Jan. 1992 
[44] Anupindi, N.; Narayanan, S.B.; Prabhu, K.M.M., "New radix-3 FHT algorithm," 
Electronics Letters , vol.26, no.18, pp.1537,1538, 30 Aug. 1990 
[45] Yiquan Wu; Zhaoda Zhu, "A new radix-3 fast algorithm for computing the DST-II," 
Aerospace and Electronics Conference, 1995. NAECON 1995., Proceedings of the IEEE 
1995 National , vol.1, no., pp.324,327 vol.1, 22-26 May 1995
My Book
Thank you!

Weitere ähnliche Inhalte

Was ist angesagt?

11 the inverse trigonometric functions x
11 the inverse trigonometric functions x11 the inverse trigonometric functions x
11 the inverse trigonometric functions xmath266
 
Conditional neural processes
Conditional neural processesConditional neural processes
Conditional neural processesKazuki Fujikawa
 
Convex Optimization
Convex OptimizationConvex Optimization
Convex Optimizationadil raja
 
Sparse Representation of Multivariate Extremes with Applications to Anomaly R...
Sparse Representation of Multivariate Extremes with Applications to Anomaly R...Sparse Representation of Multivariate Extremes with Applications to Anomaly R...
Sparse Representation of Multivariate Extremes with Applications to Anomaly R...Hayato Watanabe
 
H2O World - Consensus Optimization and Machine Learning - Stephen Boyd
H2O World - Consensus Optimization and Machine Learning - Stephen BoydH2O World - Consensus Optimization and Machine Learning - Stephen Boyd
H2O World - Consensus Optimization and Machine Learning - Stephen BoydSri Ambati
 
第13回数学カフェ「素数!!」二次会 LT資料「乱数!!」
第13回数学カフェ「素数!!」二次会 LT資料「乱数!!」第13回数学カフェ「素数!!」二次会 LT資料「乱数!!」
第13回数学カフェ「素数!!」二次会 LT資料「乱数!!」Ken'ichi Matsui
 
Finite elements : basis functions
Finite elements : basis functionsFinite elements : basis functions
Finite elements : basis functionsTarun Gehlot
 
2.10 translations of graphs t
2.10 translations of graphs t2.10 translations of graphs t
2.10 translations of graphs tmath260
 
Neural Processes Family
Neural Processes FamilyNeural Processes Family
Neural Processes FamilyKota Matsui
 
Tailored Bregman Ball Trees for Effective Nearest Neighbors
Tailored Bregman Ball Trees for Effective Nearest NeighborsTailored Bregman Ball Trees for Effective Nearest Neighbors
Tailored Bregman Ball Trees for Effective Nearest NeighborsFrank Nielsen
 

Was ist angesagt? (20)

11 the inverse trigonometric functions x
11 the inverse trigonometric functions x11 the inverse trigonometric functions x
11 the inverse trigonometric functions x
 
Functions limits and continuity
Functions limits and continuityFunctions limits and continuity
Functions limits and continuity
 
Conditional neural processes
Conditional neural processesConditional neural processes
Conditional neural processes
 
maths basics
maths basicsmaths basics
maths basics
 
Convex Optimization
Convex OptimizationConvex Optimization
Convex Optimization
 
Sparse Representation of Multivariate Extremes with Applications to Anomaly R...
Sparse Representation of Multivariate Extremes with Applications to Anomaly R...Sparse Representation of Multivariate Extremes with Applications to Anomaly R...
Sparse Representation of Multivariate Extremes with Applications to Anomaly R...
 
H2O World - Consensus Optimization and Machine Learning - Stephen Boyd
H2O World - Consensus Optimization and Machine Learning - Stephen BoydH2O World - Consensus Optimization and Machine Learning - Stephen Boyd
H2O World - Consensus Optimization and Machine Learning - Stephen Boyd
 
第13回数学カフェ「素数!!」二次会 LT資料「乱数!!」
第13回数学カフェ「素数!!」二次会 LT資料「乱数!!」第13回数学カフェ「素数!!」二次会 LT資料「乱数!!」
第13回数学カフェ「素数!!」二次会 LT資料「乱数!!」
 
Finite elements : basis functions
Finite elements : basis functionsFinite elements : basis functions
Finite elements : basis functions
 
Functions
FunctionsFunctions
Functions
 
Tcu12 crc multi
Tcu12 crc multiTcu12 crc multi
Tcu12 crc multi
 
2.10 translations of graphs t
2.10 translations of graphs t2.10 translations of graphs t
2.10 translations of graphs t
 
Math academy-partial-fractions-notes
Math academy-partial-fractions-notesMath academy-partial-fractions-notes
Math academy-partial-fractions-notes
 
Chapter 14
Chapter 14Chapter 14
Chapter 14
 
Functions
FunctionsFunctions
Functions
 
Neural Processes Family
Neural Processes FamilyNeural Processes Family
Neural Processes Family
 
Tailored Bregman Ball Trees for Effective Nearest Neighbors
Tailored Bregman Ball Trees for Effective Nearest NeighborsTailored Bregman Ball Trees for Effective Nearest Neighbors
Tailored Bregman Ball Trees for Effective Nearest Neighbors
 
Interpolation
InterpolationInterpolation
Interpolation
 
Application of Derivative 3
Application of Derivative 3Application of Derivative 3
Application of Derivative 3
 
The integral
The integralThe integral
The integral
 

Andere mochten auch

Presentazione del progetto CAST
Presentazione del progetto CASTPresentazione del progetto CAST
Presentazione del progetto CASTAdriano De Vita
 
Syllabus ref02
Syllabus ref02Syllabus ref02
Syllabus ref02SongTu
 
Rulesimple Hizmetlerimiz
Rulesimple HizmetlerimizRulesimple Hizmetlerimiz
Rulesimple HizmetlerimizCan Taner
 
Startup'tan E-ticaret Devi Olmak: SEO Altyapısını Oluştururken Google'ı Doğru...
Startup'tan E-ticaret Devi Olmak: SEO Altyapısını Oluştururken Google'ı Doğru...Startup'tan E-ticaret Devi Olmak: SEO Altyapısını Oluştururken Google'ı Doğru...
Startup'tan E-ticaret Devi Olmak: SEO Altyapısını Oluştururken Google'ı Doğru...Uğur Eskici
 
2013 Scrum Gathering Keynote: Buy or build — where did your agile come from?
2013 Scrum Gathering Keynote: Buy or build — where did your agile come from?2013 Scrum Gathering Keynote: Buy or build — where did your agile come from?
2013 Scrum Gathering Keynote: Buy or build — where did your agile come from?James Coplien
 
Cooking an ontology-based spoken dialogue system
Cooking an ontology-based spoken dialogue systemCooking an ontology-based spoken dialogue system
Cooking an ontology-based spoken dialogue systemJoana Paulo Pardal
 
Phoenician empire history of architecture
Phoenician empire history of architecturePhoenician empire history of architecture
Phoenician empire history of architecturejuzz_01
 
Selendroid in Action
Selendroid in ActionSelendroid in Action
Selendroid in ActionDominik Dary
 
Elenco vitalizi aggiornato_05_ottobre_2016
Elenco vitalizi aggiornato_05_ottobre_2016Elenco vitalizi aggiornato_05_ottobre_2016
Elenco vitalizi aggiornato_05_ottobre_2016ilfattoquotidiano.it
 
The importance of internet usage as a marketing tool in the studies of sports...
The importance of internet usage as a marketing tool in the studies of sports...The importance of internet usage as a marketing tool in the studies of sports...
The importance of internet usage as a marketing tool in the studies of sports...Merve Aydogan
 
IEEE Day 2013 Oracle Database 12c: new features for developers
IEEE Day 2013 Oracle Database 12c: new features for developersIEEE Day 2013 Oracle Database 12c: new features for developers
IEEE Day 2013 Oracle Database 12c: new features for developersRamin Orujov
 
Webrazzi online code: iyzico continuous delivery
Webrazzi online code: iyzico continuous deliveryWebrazzi online code: iyzico continuous delivery
Webrazzi online code: iyzico continuous deliveryHakan ERDOGAN
 
Important Skills Every Entrepreneur Should Have
Important Skills Every Entrepreneur Should HaveImportant Skills Every Entrepreneur Should Have
Important Skills Every Entrepreneur Should HaveInshan Meahjohn
 
A Robust Watermarking Technique Based On Dwt on Digital Images
A Robust Watermarking Technique Based On Dwt on Digital  ImagesA Robust Watermarking Technique Based On Dwt on Digital  Images
A Robust Watermarking Technique Based On Dwt on Digital ImagesIJMER
 

Andere mochten auch (19)

Presentazione del progetto CAST
Presentazione del progetto CASTPresentazione del progetto CAST
Presentazione del progetto CAST
 
Introduction
IntroductionIntroduction
Introduction
 
Test Driven Development
Test Driven DevelopmentTest Driven Development
Test Driven Development
 
Syllabus ref02
Syllabus ref02Syllabus ref02
Syllabus ref02
 
Rulesimple Hizmetlerimiz
Rulesimple HizmetlerimizRulesimple Hizmetlerimiz
Rulesimple Hizmetlerimiz
 
Startup'tan E-ticaret Devi Olmak: SEO Altyapısını Oluştururken Google'ı Doğru...
Startup'tan E-ticaret Devi Olmak: SEO Altyapısını Oluştururken Google'ı Doğru...Startup'tan E-ticaret Devi Olmak: SEO Altyapısını Oluştururken Google'ı Doğru...
Startup'tan E-ticaret Devi Olmak: SEO Altyapısını Oluştururken Google'ı Doğru...
 
Kullanıcı Deneyimi & Kullanılabilirlik
Kullanıcı Deneyimi & KullanılabilirlikKullanıcı Deneyimi & Kullanılabilirlik
Kullanıcı Deneyimi & Kullanılabilirlik
 
2013 Scrum Gathering Keynote: Buy or build — where did your agile come from?
2013 Scrum Gathering Keynote: Buy or build — where did your agile come from?2013 Scrum Gathering Keynote: Buy or build — where did your agile come from?
2013 Scrum Gathering Keynote: Buy or build — where did your agile come from?
 
Pruebas exploratorias
Pruebas exploratoriasPruebas exploratorias
Pruebas exploratorias
 
Cooking an ontology-based spoken dialogue system
Cooking an ontology-based spoken dialogue systemCooking an ontology-based spoken dialogue system
Cooking an ontology-based spoken dialogue system
 
Phoenician empire history of architecture
Phoenician empire history of architecturePhoenician empire history of architecture
Phoenician empire history of architecture
 
Selendroid in Action
Selendroid in ActionSelendroid in Action
Selendroid in Action
 
Elenco vitalizi aggiornato_05_ottobre_2016
Elenco vitalizi aggiornato_05_ottobre_2016Elenco vitalizi aggiornato_05_ottobre_2016
Elenco vitalizi aggiornato_05_ottobre_2016
 
The importance of internet usage as a marketing tool in the studies of sports...
The importance of internet usage as a marketing tool in the studies of sports...The importance of internet usage as a marketing tool in the studies of sports...
The importance of internet usage as a marketing tool in the studies of sports...
 
IEEE Day 2013 Oracle Database 12c: new features for developers
IEEE Day 2013 Oracle Database 12c: new features for developersIEEE Day 2013 Oracle Database 12c: new features for developers
IEEE Day 2013 Oracle Database 12c: new features for developers
 
Webrazzi online code: iyzico continuous delivery
Webrazzi online code: iyzico continuous deliveryWebrazzi online code: iyzico continuous delivery
Webrazzi online code: iyzico continuous delivery
 
Important Skills Every Entrepreneur Should Have
Important Skills Every Entrepreneur Should HaveImportant Skills Every Entrepreneur Should Have
Important Skills Every Entrepreneur Should Have
 
Will power
Will powerWill power
Will power
 
A Robust Watermarking Technique Based On Dwt on Digital Images
A Robust Watermarking Technique Based On Dwt on Digital  ImagesA Robust Watermarking Technique Based On Dwt on Digital  Images
A Robust Watermarking Technique Based On Dwt on Digital Images
 

Ähnlich wie Great Pyramid of Giza and Golden Section Transform Preview

Norm-variation of bilinear averages
Norm-variation of bilinear averagesNorm-variation of bilinear averages
Norm-variation of bilinear averagesVjekoslavKovac1
 
Transformations computer graphics
Transformations computer graphics Transformations computer graphics
Transformations computer graphics Vikram Halder
 
All You Need is Fold
All You Need is FoldAll You Need is Fold
All You Need is FoldMike Harris
 
Declare Your Language: Transformation by Strategic Term Rewriting
Declare Your Language: Transformation by Strategic Term RewritingDeclare Your Language: Transformation by Strategic Term Rewriting
Declare Your Language: Transformation by Strategic Term RewritingEelco Visser
 
Problem Solving by Computer Finite Element Method
Problem Solving by Computer Finite Element MethodProblem Solving by Computer Finite Element Method
Problem Solving by Computer Finite Element MethodPeter Herbert
 
The Moore-Spiegel Oscillator
The Moore-Spiegel OscillatorThe Moore-Spiegel Oscillator
The Moore-Spiegel OscillatorAbhranil Das
 
Redundancy in robot manipulators and multi robot systems
Redundancy in robot manipulators and multi robot systemsRedundancy in robot manipulators and multi robot systems
Redundancy in robot manipulators and multi robot systemsSpringer
 
Least Squares, Lasso, Ridge and ElasticNet
Least Squares, Lasso, Ridge and ElasticNetLeast Squares, Lasso, Ridge and ElasticNet
Least Squares, Lasso, Ridge and ElasticNetHossam Karim
 
Hideitsu Hino
Hideitsu HinoHideitsu Hino
Hideitsu HinoSuurist
 
Significance of Mathematical Analysis in Operational Methods [2014]
Significance of Mathematical Analysis in Operational Methods [2014]Significance of Mathematical Analysis in Operational Methods [2014]
Significance of Mathematical Analysis in Operational Methods [2014]SanjayKumar Patel
 
Analysis of multiple groove guide
Analysis of multiple groove guideAnalysis of multiple groove guide
Analysis of multiple groove guideYong Heui Cho
 
IVR - Chapter 1 - Introduction
IVR - Chapter 1 - IntroductionIVR - Chapter 1 - Introduction
IVR - Chapter 1 - IntroductionCharles Deledalle
 
11.generalized and subset integrated autoregressive moving average bilinear t...
11.generalized and subset integrated autoregressive moving average bilinear t...11.generalized and subset integrated autoregressive moving average bilinear t...
11.generalized and subset integrated autoregressive moving average bilinear t...Alexander Decker
 
Use the same variable names and write the function F - Force(x-ks-kc-l.pdf
Use the same variable names and write the function F - Force(x-ks-kc-l.pdfUse the same variable names and write the function F - Force(x-ks-kc-l.pdf
Use the same variable names and write the function F - Force(x-ks-kc-l.pdfacteleshoppe
 
2. Fixed Point Iteration.pptx
2. Fixed Point Iteration.pptx2. Fixed Point Iteration.pptx
2. Fixed Point Iteration.pptxsaadhaq6
 
Intro to Matlab programming
Intro to Matlab programmingIntro to Matlab programming
Intro to Matlab programmingAhmed Moawad
 

Ähnlich wie Great Pyramid of Giza and Golden Section Transform Preview (20)

Norm-variation of bilinear averages
Norm-variation of bilinear averagesNorm-variation of bilinear averages
Norm-variation of bilinear averages
 
Transformations computer graphics
Transformations computer graphics Transformations computer graphics
Transformations computer graphics
 
Glowworm Swarm Optimisation
Glowworm Swarm OptimisationGlowworm Swarm Optimisation
Glowworm Swarm Optimisation
 
All You Need is Fold
All You Need is FoldAll You Need is Fold
All You Need is Fold
 
Declare Your Language: Transformation by Strategic Term Rewriting
Declare Your Language: Transformation by Strategic Term RewritingDeclare Your Language: Transformation by Strategic Term Rewriting
Declare Your Language: Transformation by Strategic Term Rewriting
 
Laplace transforms
Laplace transformsLaplace transforms
Laplace transforms
 
Week 4
Week 4Week 4
Week 4
 
Problem Solving by Computer Finite Element Method
Problem Solving by Computer Finite Element MethodProblem Solving by Computer Finite Element Method
Problem Solving by Computer Finite Element Method
 
The Moore-Spiegel Oscillator
The Moore-Spiegel OscillatorThe Moore-Spiegel Oscillator
The Moore-Spiegel Oscillator
 
Redundancy in robot manipulators and multi robot systems
Redundancy in robot manipulators and multi robot systemsRedundancy in robot manipulators and multi robot systems
Redundancy in robot manipulators and multi robot systems
 
Least Squares, Lasso, Ridge and ElasticNet
Least Squares, Lasso, Ridge and ElasticNetLeast Squares, Lasso, Ridge and ElasticNet
Least Squares, Lasso, Ridge and ElasticNet
 
Hideitsu Hino
Hideitsu HinoHideitsu Hino
Hideitsu Hino
 
Significance of Mathematical Analysis in Operational Methods [2014]
Significance of Mathematical Analysis in Operational Methods [2014]Significance of Mathematical Analysis in Operational Methods [2014]
Significance of Mathematical Analysis in Operational Methods [2014]
 
Analysis of multiple groove guide
Analysis of multiple groove guideAnalysis of multiple groove guide
Analysis of multiple groove guide
 
Ch9c
Ch9cCh9c
Ch9c
 
IVR - Chapter 1 - Introduction
IVR - Chapter 1 - IntroductionIVR - Chapter 1 - Introduction
IVR - Chapter 1 - Introduction
 
11.generalized and subset integrated autoregressive moving average bilinear t...
11.generalized and subset integrated autoregressive moving average bilinear t...11.generalized and subset integrated autoregressive moving average bilinear t...
11.generalized and subset integrated autoregressive moving average bilinear t...
 
Use the same variable names and write the function F - Force(x-ks-kc-l.pdf
Use the same variable names and write the function F - Force(x-ks-kc-l.pdfUse the same variable names and write the function F - Force(x-ks-kc-l.pdf
Use the same variable names and write the function F - Force(x-ks-kc-l.pdf
 
2. Fixed Point Iteration.pptx
2. Fixed Point Iteration.pptx2. Fixed Point Iteration.pptx
2. Fixed Point Iteration.pptx
 
Intro to Matlab programming
Intro to Matlab programmingIntro to Matlab programming
Intro to Matlab programming
 

Kürzlich hochgeladen

Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...
Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...
Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...lizamodels9
 
User Guide: Capricorn FLX™ Weather Station
User Guide: Capricorn FLX™ Weather StationUser Guide: Capricorn FLX™ Weather Station
User Guide: Capricorn FLX™ Weather StationColumbia Weather Systems
 
Thermodynamics ,types of system,formulae ,gibbs free energy .pptx
Thermodynamics ,types of system,formulae ,gibbs free energy .pptxThermodynamics ,types of system,formulae ,gibbs free energy .pptx
Thermodynamics ,types of system,formulae ,gibbs free energy .pptxuniversity
 
The dark energy paradox leads to a new structure of spacetime.pptx
The dark energy paradox leads to a new structure of spacetime.pptxThe dark energy paradox leads to a new structure of spacetime.pptx
The dark energy paradox leads to a new structure of spacetime.pptxEran Akiva Sinbar
 
ECG Graph Monitoring with AD8232 ECG Sensor & Arduino.pptx
ECG Graph Monitoring with AD8232 ECG Sensor & Arduino.pptxECG Graph Monitoring with AD8232 ECG Sensor & Arduino.pptx
ECG Graph Monitoring with AD8232 ECG Sensor & Arduino.pptxmaryFF1
 
Citronella presentation SlideShare mani upadhyay
Citronella presentation SlideShare mani upadhyayCitronella presentation SlideShare mani upadhyay
Citronella presentation SlideShare mani upadhyayupadhyaymani499
 
Pests of Blackgram, greengram, cowpea_Dr.UPR.pdf
Pests of Blackgram, greengram, cowpea_Dr.UPR.pdfPests of Blackgram, greengram, cowpea_Dr.UPR.pdf
Pests of Blackgram, greengram, cowpea_Dr.UPR.pdfPirithiRaju
 
Bioteknologi kelas 10 kumer smapsa .pptx
Bioteknologi kelas 10 kumer smapsa .pptxBioteknologi kelas 10 kumer smapsa .pptx
Bioteknologi kelas 10 kumer smapsa .pptx023NiWayanAnggiSriWa
 
(9818099198) Call Girls In Noida Sector 14 (NOIDA ESCORTS)
(9818099198) Call Girls In Noida Sector 14 (NOIDA ESCORTS)(9818099198) Call Girls In Noida Sector 14 (NOIDA ESCORTS)
(9818099198) Call Girls In Noida Sector 14 (NOIDA ESCORTS)riyaescorts54
 
Servosystem Theory / Cybernetic Theory by Petrovic
Servosystem Theory / Cybernetic Theory by PetrovicServosystem Theory / Cybernetic Theory by Petrovic
Servosystem Theory / Cybernetic Theory by PetrovicAditi Jain
 
Pests of soyabean_Binomics_IdentificationDr.UPR.pdf
Pests of soyabean_Binomics_IdentificationDr.UPR.pdfPests of soyabean_Binomics_IdentificationDr.UPR.pdf
Pests of soyabean_Binomics_IdentificationDr.UPR.pdfPirithiRaju
 
Microphone- characteristics,carbon microphone, dynamic microphone.pptx
Microphone- characteristics,carbon microphone, dynamic microphone.pptxMicrophone- characteristics,carbon microphone, dynamic microphone.pptx
Microphone- characteristics,carbon microphone, dynamic microphone.pptxpriyankatabhane
 
User Guide: Magellan MX™ Weather Station
User Guide: Magellan MX™ Weather StationUser Guide: Magellan MX™ Weather Station
User Guide: Magellan MX™ Weather StationColumbia Weather Systems
 
《Queensland毕业文凭-昆士兰大学毕业证成绩单》
《Queensland毕业文凭-昆士兰大学毕业证成绩单》《Queensland毕业文凭-昆士兰大学毕业证成绩单》
《Queensland毕业文凭-昆士兰大学毕业证成绩单》rnrncn29
 
STOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptx
STOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptxSTOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptx
STOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptxMurugaveni B
 
Pests of jatropha_Bionomics_identification_Dr.UPR.pdf
Pests of jatropha_Bionomics_identification_Dr.UPR.pdfPests of jatropha_Bionomics_identification_Dr.UPR.pdf
Pests of jatropha_Bionomics_identification_Dr.UPR.pdfPirithiRaju
 
Fertilization: Sperm and the egg—collectively called the gametes—fuse togethe...
Fertilization: Sperm and the egg—collectively called the gametes—fuse togethe...Fertilization: Sperm and the egg—collectively called the gametes—fuse togethe...
Fertilization: Sperm and the egg—collectively called the gametes—fuse togethe...D. B. S. College Kanpur
 
THE ROLE OF PHARMACOGNOSY IN TRADITIONAL AND MODERN SYSTEM OF MEDICINE.pptx
THE ROLE OF PHARMACOGNOSY IN TRADITIONAL AND MODERN SYSTEM OF MEDICINE.pptxTHE ROLE OF PHARMACOGNOSY IN TRADITIONAL AND MODERN SYSTEM OF MEDICINE.pptx
THE ROLE OF PHARMACOGNOSY IN TRADITIONAL AND MODERN SYSTEM OF MEDICINE.pptxNandakishor Bhaurao Deshmukh
 
Microteaching on terms used in filtration .Pharmaceutical Engineering
Microteaching on terms used in filtration .Pharmaceutical EngineeringMicroteaching on terms used in filtration .Pharmaceutical Engineering
Microteaching on terms used in filtration .Pharmaceutical EngineeringPrajakta Shinde
 

Kürzlich hochgeladen (20)

Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...
Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...
Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...
 
User Guide: Capricorn FLX™ Weather Station
User Guide: Capricorn FLX™ Weather StationUser Guide: Capricorn FLX™ Weather Station
User Guide: Capricorn FLX™ Weather Station
 
Thermodynamics ,types of system,formulae ,gibbs free energy .pptx
Thermodynamics ,types of system,formulae ,gibbs free energy .pptxThermodynamics ,types of system,formulae ,gibbs free energy .pptx
Thermodynamics ,types of system,formulae ,gibbs free energy .pptx
 
The dark energy paradox leads to a new structure of spacetime.pptx
The dark energy paradox leads to a new structure of spacetime.pptxThe dark energy paradox leads to a new structure of spacetime.pptx
The dark energy paradox leads to a new structure of spacetime.pptx
 
ECG Graph Monitoring with AD8232 ECG Sensor & Arduino.pptx
ECG Graph Monitoring with AD8232 ECG Sensor & Arduino.pptxECG Graph Monitoring with AD8232 ECG Sensor & Arduino.pptx
ECG Graph Monitoring with AD8232 ECG Sensor & Arduino.pptx
 
Citronella presentation SlideShare mani upadhyay
Citronella presentation SlideShare mani upadhyayCitronella presentation SlideShare mani upadhyay
Citronella presentation SlideShare mani upadhyay
 
Pests of Blackgram, greengram, cowpea_Dr.UPR.pdf
Pests of Blackgram, greengram, cowpea_Dr.UPR.pdfPests of Blackgram, greengram, cowpea_Dr.UPR.pdf
Pests of Blackgram, greengram, cowpea_Dr.UPR.pdf
 
Bioteknologi kelas 10 kumer smapsa .pptx
Bioteknologi kelas 10 kumer smapsa .pptxBioteknologi kelas 10 kumer smapsa .pptx
Bioteknologi kelas 10 kumer smapsa .pptx
 
(9818099198) Call Girls In Noida Sector 14 (NOIDA ESCORTS)
(9818099198) Call Girls In Noida Sector 14 (NOIDA ESCORTS)(9818099198) Call Girls In Noida Sector 14 (NOIDA ESCORTS)
(9818099198) Call Girls In Noida Sector 14 (NOIDA ESCORTS)
 
Servosystem Theory / Cybernetic Theory by Petrovic
Servosystem Theory / Cybernetic Theory by PetrovicServosystem Theory / Cybernetic Theory by Petrovic
Servosystem Theory / Cybernetic Theory by Petrovic
 
Pests of soyabean_Binomics_IdentificationDr.UPR.pdf
Pests of soyabean_Binomics_IdentificationDr.UPR.pdfPests of soyabean_Binomics_IdentificationDr.UPR.pdf
Pests of soyabean_Binomics_IdentificationDr.UPR.pdf
 
Microphone- characteristics,carbon microphone, dynamic microphone.pptx
Microphone- characteristics,carbon microphone, dynamic microphone.pptxMicrophone- characteristics,carbon microphone, dynamic microphone.pptx
Microphone- characteristics,carbon microphone, dynamic microphone.pptx
 
User Guide: Magellan MX™ Weather Station
User Guide: Magellan MX™ Weather StationUser Guide: Magellan MX™ Weather Station
User Guide: Magellan MX™ Weather Station
 
《Queensland毕业文凭-昆士兰大学毕业证成绩单》
《Queensland毕业文凭-昆士兰大学毕业证成绩单》《Queensland毕业文凭-昆士兰大学毕业证成绩单》
《Queensland毕业文凭-昆士兰大学毕业证成绩单》
 
Volatile Oils Pharmacognosy And Phytochemistry -I
Volatile Oils Pharmacognosy And Phytochemistry -IVolatile Oils Pharmacognosy And Phytochemistry -I
Volatile Oils Pharmacognosy And Phytochemistry -I
 
STOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptx
STOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptxSTOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptx
STOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptx
 
Pests of jatropha_Bionomics_identification_Dr.UPR.pdf
Pests of jatropha_Bionomics_identification_Dr.UPR.pdfPests of jatropha_Bionomics_identification_Dr.UPR.pdf
Pests of jatropha_Bionomics_identification_Dr.UPR.pdf
 
Fertilization: Sperm and the egg—collectively called the gametes—fuse togethe...
Fertilization: Sperm and the egg—collectively called the gametes—fuse togethe...Fertilization: Sperm and the egg—collectively called the gametes—fuse togethe...
Fertilization: Sperm and the egg—collectively called the gametes—fuse togethe...
 
THE ROLE OF PHARMACOGNOSY IN TRADITIONAL AND MODERN SYSTEM OF MEDICINE.pptx
THE ROLE OF PHARMACOGNOSY IN TRADITIONAL AND MODERN SYSTEM OF MEDICINE.pptxTHE ROLE OF PHARMACOGNOSY IN TRADITIONAL AND MODERN SYSTEM OF MEDICINE.pptx
THE ROLE OF PHARMACOGNOSY IN TRADITIONAL AND MODERN SYSTEM OF MEDICINE.pptx
 
Microteaching on terms used in filtration .Pharmaceutical Engineering
Microteaching on terms used in filtration .Pharmaceutical EngineeringMicroteaching on terms used in filtration .Pharmaceutical Engineering
Microteaching on terms used in filtration .Pharmaceutical Engineering
 

Great Pyramid of Giza and Golden Section Transform Preview

  • 1. GGrreeaatt PPyyrraammiidd ooff GGiizzaa aanndd GGoollddeenn SSeeccttiioonn TTrraannssffoorrmm PPrreevviieeww Jun Li http://GoldenSectionTransform.com/ http://en.wikipedia.org/wiki/Great_Pyramid_of_Giza
  • 2. Introduction The Great Pyramid of Giza (also known as the Pyramid of Khufu or the Pyramid of Cheops) is the oldest and largest of the three pyramids in the Giza Necropolis bordering what is now El Giza, Egypt. It is the oldest of the Seven Wonders of the Ancient World, and the only one to remain largely intact. In mathematics, Golden Section Transform is a new class of discrete orthogonal transform. Its theory involves golden ratio, Fibonacci number, Fourier analysis, wavelet theory, stochastic process, integer partition, matrix analysis, group theory, combinatorics on words, its applied fields include digital signal (image/audio/video) processing, denoising, watermarking, compression, coding and so on. see here.
  • 3. Are there any connections http://en.wikipedia.org/wiki/Great_Pyramid_of_Giza 1-level normalized reverse order Low Golden Section Transform(RLGST)
  • 4. between Great Pyramid and RLGST? http://en.wikipedia.org/wiki/Johannes_Kepler
  • 6.
  • 7. The answer is ... to be contiued on: http://GoldenSectionTransform.org/
  • 8. RLGST Matlab Implementation rlgst2d.m % forward 2d reverse order low golden section transform irlgst2d.m % inverse 2d reverse order low golden section transform testrlgstfn.m % 2d RLGST demo all the codes can be downloaded here: http://goldensectiontransform.org/lifting-scheme-reverse-order-low-golden-section- transform-matlab-part/
  • 9. rlgst2d.m function H = rlgst2d(X,nlevel) % Author: Jun Li, more info@ http://goldensectiontransform.org/ % the lifting scheme of 2d reverse order low golden section transform % here matrix X is of Fn*Fn where Fn is a fibonacci number Fn>=2. % Wythoff sequence is used here, no need to call function_lword. global lj; % only used by function rlgst1d(S) below. global FBL; % only used by function rlgst1d(S) below. [xx,yy] = size(X); ind = floor(log(xx*sqrt(5)+1/2)/log((sqrt(5)+1)/2)); % determine index FBL = filter(1,[1 -1 -1],[1 zeros(1,ind-1)]); % FBL = Fibonacci sequence -> [1 1 2 3 5 8...]; H=X; for lj=1:nlevel for j=1:xx [ss,dd] = rlgst1d(H(j,1:yy)); % row transform H(j,1:yy) = [ss,dd]; end for k=1:yy [ss,dd] = rlgst1d(H(1:xx,k)'); % column transform H(1:xx,k) = [ss,dd]'; end xx = FBL(end-lj); % round((sqrt(5)-1)/2*xx); 8*8 block: xx=8->5->3->2 yy = FBL(end-lj); % round((sqrt(5)-1)/2*yy); 8*8 block: yy=8->5->3->2 end %% 1d reverse order low golden section transform lifting scheme function [ss,dd] = rlgst1d(S) %% Author: Jun Li, more info@ http://goldensectiontransform.org/ global lj; global FBL; for i=1:FBL(end-lj-1) lw = floor((1+sqrt(5))/2*i); % Lower Wythoff sequence->1,3,4,6,8... % uw = floor((3+sqrt(5))/2*i); % Upper Wythoff sequence->2,5,7,10,13... uw = lw + i; % ss(lw) = (sqrt(FBL(lj+1))*S(uw-1)+sqrt(FBL(lj))*S(uw))/sqrt(FBL(lj+2)); % dd(i) = (sqrt(FBL(lj))*S(uw-1)-sqrt(FBL(lj+1))*S(uw))/sqrt(FBL(lj+2)); %% we can use lifting scheme here: ga = sqrt(FBL(lj+1)/FBL(lj)); gb = sqrt(FBL(lj)*FBL(lj+1))/FBL(lj+2); gc = sqrt(FBL(lj+2)/FBL(lj)); d1 = S(uw-1) - ga*S(uw); s1 = S(uw) + gb*d1; ss(lw) = gc*s1; dd(i) = d1/gc; if (FBL(end-lj) ~= 1) & (i <= FBL(end-lj-2)) ss(uw) = S(lw+uw); end end
  • 10. irlgst2d.m function X = irlgst2d(H,nlevel) % Author: Jun Li, more info@ http://goldensectiontransform.org/ % the lifting scheme of inverse 2d reverse order low golden section transform % here matrix H is of Fn*Fn where Fn is a fibonacci number Fn>=2. % Wythoff sequence is used here, no need to call function_lword. global lji; % only used by function irlgst1d(S) below. global FBLI; % only used by function irlgst1d(S) below. [xx,yy] = size(H); ind = floor(log(xx*sqrt(5)+1/2)/log((sqrt(5)+1)/2)); % determine index FBLI = filter(1,[1 -1 -1],[1 zeros(1,ind-1)]); % FBLI = Fibonacci sequence -> [1 1 2 3 5 8...]; X=H; for lji=nlevel:-1:1 for j=1:FBLI(end-lji+1) ss = X(1:FBLI(end-lji),j); dd = X(FBLI(end-lji)+1:FBLI(end-lji+1),j); X(1:FBLI(end-lji+1),j) = irlgst1d(ss',dd')'; % inverse column transform end for k=1:FBLI(end-lji+1) ss = X(k,1:FBLI(end-lji)); dd = X(k,FBLI(end-lji)+1:FBLI(end-lji+1)); X(k,1:FBLI(end-lji+1)) = irlgst1d(ss,dd); % inverse row transform end end %% inverse 1d reverse order low golden section transform lifting scheme function S = irlgst1d(ss,dd) %% Author: Jun Li, more info@ http://goldensectiontransform.org/ global lji; global FBLI; for i=1:FBLI(end-lji-1) lw = floor((1+sqrt(5))/2*i); % Lower Wythoff sequence->1,3,4,6,8... % uw = floor((3+sqrt(5))/2*i); % Upper Wythoff sequence->2,5,7,10,13... uw = lw + i; % S(uw-1) = (sqrt(FBLI(lji+1))*ss(lw)+sqrt(FBLI(lji))*dd(i))/sqrt(FBLI(lji+2)); % S(uw) = (sqrt(FBLI(lji))*ss(lw)-sqrt(FBLI(lji+1))*dd(i))/sqrt(FBLI(lji+2)); %% we can use lifting scheme here: ga = sqrt(FBLI(lji+1)/FBLI(lji)); gb = sqrt(FBLI(lji)*FBLI(lji+1))/FBLI(lji+2); gc = sqrt(FBLI(lji+2)/FBLI(lji)); d1 = gc*dd(i); s1 = ss(lw)/gc; S(uw) = s1 - gb*d1; S(uw-1) = d1 + ga*S(uw); if (FBLI(end-lji) ~= 1) & (i <= FBLI(end-lji-2)) S(lw+uw) = ss(uw); end end
  • 11. testrlgstfn.m function testrlgstfn % load 8 bit lena of size 377*377 X = im2double(imread('C:lena377.bmp')); [xx,yy] = size(X); nlevel = 1; H = rlgst2d(X,nlevel); imshow(H); title([num2str(nlevel),'-level normalized reverse order low golden section transform of',' Lena ',num2str(xx),'*',num2str(yy)]); % R = irlgst2d(H,nlevel); % EQ = isequal(round(X*255),round(R*255)) % Perfect Reconstruction imwrite(H,'rlgstlena377.png','png');
  • 15. Links Jun Li's Golden Section Transform Home Page http://goldensectiontransform.org/ & goldensectiontransform.com facebook: https://www.facebook.com/goldensectiontransform twitter: @JasonLiJun http://en.wikipedia.org/wiki/Great_Pyramid_of_Giza http://en.wikipedia.org/wiki/Kepler_triangle http://blog.world-mysteries.com/science/the-great-pyramid-and-the-speed-of-light/ http://www.wanttoknow.nl/hoofdartikelen/mysterieuze-krachten-van-piramide-structuren/ http://ifdawn.com/esa/tipharet.htm http://jwilson.coe.uga.edu/EMAT6680/Parveen/ancient_egypt.htm http://portal.groupkos.com/index.php?title=Great_Pyramid_Dimensions http://www.cheops-pyramide.ch/khufu-pyramid/pyramid-alignment.html http://www.crystalinks.com/greatpyramid.html http://www.cut-the-knot.org/do_you_know/GoldenRatio.shtml http://www.gizapyramid.com/overview.htm http://www.goldennumber.net/phi-pi-great-pyramid-egypt/ http://www.grahamhancock.com/forum/KollerstromN2.php http://www.maths.surrey.ac.uk/hosted-sites/R.Knott/Fibonacci/fibInArt.html http://www.sacred-geometry.es/en/content/phi-great-pyramid http://www.sriyantraresearch.com/Article/GoldenRatio/golden%20ratio%20triangles.html http://www.world-mysteries.com/mpl_2.htm https://brilliant.org/discussions/thread/the-golden-ratio-kepler-triangle/ https://www.dartmouth.edu/~matc/math5.geometry/unit2/unit2.html http://www.maths.surrey.ac.uk/hosted-sites/R.Knott/Fibonacci/fibrab.html http://en.wikipedia.org/wiki/Fibonacci_word http://mathworld.wolfram.com/RabbitSequence.html The infinite Fibonacci word, https://oeis.org/A005614 Lower Wythoff sequence, http://oeis.org/A000201 Upper Wythoff sequence, http://oeis.org/A001950
  • 16. Reverse Order High Golden Section Transform (RHGST) Jun Li
  • 17.
  • 18.
  • 20. References [1] Jun. Li (2007). "Golden Section Method Used in Digital Image Multi-resolution Analysis". Application Research of Computers (in zh-cn) 24 (Suppl.): 1880–1882. ISSN 1001- 3695;CN 51-1196/TP [2] I. Daubechies and W. Sweldens, "Factoring wavelet transforms into lifting schemes," J. Fourier Anal. Appl., vol. 4, no. 3, pp. 247-269, 1998. [3] Ingrid Daubechies. 1992. Ten Lectures on Wavelets. Soc. for Industrial and Applied Math., Philadelphia, PA, USA. [4] Sun, Y.K.(2005). Wavelet Analysis and Its Applications. China Machine Press. ISBN 7111158768 [5] Jin, J.F.(2004). Visual C++ Wavelet Transform Technology and Engineering Practice. Posts & Telecommunications Press. ISBN 7115119597 [6] He, B.;Ma, T.Y.(2002). Visual C++ Digital Image Processing. Posts & Telecommunications Press. ISBN 7115109559 [7] V. Britanak, P. Yip, K. R. Rao, 2007 Discrete Cosine and Sine Transform, General properties, Fast Algorithm and Integer Approximations" Academic Press [8] K. R. Rao and P. Yip, Discrete Cosine Transform: Algorithms, Advantages, Applications, Academic Press, Boston, 1990. [9] J. Nilsson, On the entropy of random Fibonacci words, arXiv:1001.3513. [10] J. Nilsson, On the entropy of a family of random substitutions, Monatsh. Math. 168 (2012) 563–577. arXiv:1103.4777.
  • 21. [11] J. Nilsson, On the entropy of a two step random Fibonacci substitution, Entropy 15 (2013) 3312—3324; arXiv:1303.2526. [12] Wai-Fong Chuan, Fang-Yi Liao, Hui-Ling Ho, and Fei Yu. 2012. Fibonacci word patterns in two-way infinite Fibonacci words. Theor. Comput. Sci. 437 (June 2012), 69-81. DOI=10.1016/j.tcs.2012.02.020 http://dx.doi.org/10.1016/j.tcs.2012.02.020 [13] Julien Cassaigne (2008). On extremal properties of the Fibonacci word. RAIRO - Theoretical Informatics and Applications, 42, pp 701-715. doi:10.1051/ita:2008003. [14] Wojciech Rytter, The structure of subword graphs and suffix trees of Fibonacci words, Theoretical Computer Science, Volume 363, Issue 2, 28 October 2006, Pages 211-223, ISSN 0304-3975, http://dx.doi.org/10.1016/j.tcs.2006.07.025. [15] Alex Vinokur, Fibonacci connection between Huffman codes and Wythoff array, arXiv:cs/0410013v2 [16] Vinokur A.B., Huffman trees and Fibonacci numbers. Kibernetika Issue 6 (1986) 9-12 (in Russian), English translation in Cybernetics 22 Issue 6 (1986) 692–696; http://springerlink.metapress.com/link.asp?ID=W32X70520K8JJ617 [17] L. Colussi, Fastest Pattern Matching in Strings, Journal of Algorithms, Volume 16, Issue 2, March 1994, Pages 163-189, ISSN 0196-6774, http://dx.doi.org/10.1006/jagm.1994.1008. [18] Ron Lifshitz, The square Fibonacci tiling, Journal of Alloys and Compounds, Volume 342, Issues 1–2, 14 August 2002, Pages 186-190, ISSN 0925-8388, http://dx.doi.org/10.1016/S0925-8388(02)00169-X. [19] C. Godr`eche, J. M. Luck, Quasiperiodicity and randomness in tilings of the plane, Journal of Statistical Physics, Volume 55, Issue 1–2, pp. 1–28. [20] S. Even-Dar Mandel and R. Lifshitz. Electronic energy spectra and wave functions on the square Fibonacci tiling. Philosophical Magazine, 86:759-764, 2006.
  • 22. [21] S. Goedecker. 1997. Fast Radix 2, 3, 4, and 5 Kernels for Fast Fourier Transformations on Computers with Overlapping Multiply--Add Instructions. SIAM J. Sci. Comput. 18, 6 (November 1997), 1605-1611. DOI=10.1137/S1064827595281940 http://dx.doi.org/10.1137/S1064827595281940 [22] Bashar, S.K., "An efficient approach to the computation of fast fourier transform(FFT) by Radix-3 algorithm," Informatics, Electronics & Vision (ICIEV), 2013 International Conference on , vol., no., pp.1,5, 17-18 May 2013 [23] Lofgren, J.; Nilsson, P., "On hardware implementation of radix 3 and radix 5 FFT kernels for LTE systems," NORCHIP, 2011 , vol., no., pp.1,4, 14-15 Nov. 2011 [24] Prakash, S.; Rao, V.V., "A new radix-6 FFT algorithm," Acoustics, Speech and Signal Processing, IEEE Transactions on , vol.29, no.4, pp.939,941, Aug 1981 [25] Suzuki, Y.; Toshio Sone; Kido, K., "A new FFT algorithm of radix 3,6, and 12," Acoustics, Speech and Signal Processing, IEEE Transactions on , vol.34, no.2, pp.380,383, Apr 1986 [26] Dubois, E.; Venetsanopoulos, A., "A new algorithm for the radix-3 FFT," Acoustics, Speech and Signal Processing, IEEE Transactions on , vol.26, no.3, pp.222,225, Jun 1978 [27] S. Goedecker. 1997. Fast Radix 2, 3, 4, and 5 Kernels for Fast Fourier Transformations on Computers with Overlapping Multiply--Add Instructions. SIAM J. Sci. Comput. 18, 6 (November 1997), 1605-1611. DOI=10.1137/S1064827595281940 http://dx.doi.org/10.1137/S1064827595281940 [28] Huazhong Shu; XuDong Bao; Toumoulin, C.; Limin Luo, "Radix-3 Algorithm for the Fast Computation of Forward and Inverse MDCT," Signal Processing Letters, IEEE , vol.14, no.2, pp.93,96, Feb. 2007 [29] Guoan Bi; Yu, L.W., "DCT algorithms for composite sequence lengths," Signal Processing, IEEE Transactions on , vol.46, no.3, pp.554,562, Mar 1998 [30] Yuk-Hee Chan; Wan-Chi Siu,, "Fast radix-3/6 algorithms for the realization of the discrete cosine transform," Circuits and Systems, 1992. ISCAS '92. Proceedings., 1992 IEEE International Symposium on , vol.1, no., pp.153,156 vol.1, 10-13 May 1992
  • 23. [31] Yiquan Wu; Zhaoda Zhu, "New radix-3 fast algorithm for the discrete cosine transform," Aerospace and Electronics Conference, 1993. NAECON 1993., Proceedings of the IEEE 1993 National , vol., no., pp.86,89 vol.1, 24-28 May 1993 [32] Huazhong Shu; XuDong Bao; Toumoulin, C.; Limin Luo, "Radix-3 Algorithm for the Fast Computation of Forward and Inverse MDCT," Signal Processing Letters, IEEE , vol.14, no.2, pp.93,96, Feb. 2007 [33] Yuk-Hee Chan; Wan-Chi Siu,, "Mixed-radix discrete cosine transform," Signal Processing, IEEE Transactions on , vol.41, no.11, pp.3157,3161, Nov 1993 [34] Yuk-Hee Chan; Wan-Chi Siu,, "Fast radix-3/6 algorithms for the realization of the discrete cosine transform," Circuits and Systems, 1992. ISCAS '92. Proceedings., 1992 IEEE International Symposium on , vol.1, no., pp.153,156 vol.1, 10-13 May 1992 [35] Jiasong Wu; Lu Wang; Senhadji, L.; Huazhong Shu, "Improved radix-3 decimation-in-frequency algorithm for the fast computation of forward and inverse MDCT," Audio Language and Image Processing (ICALIP), 2010 International Conference on , vol., no., pp.694,699, 23-25 Nov. 2010 [36] Sanchez, V.; Garcia, P.; Peinado, AM.; Segura, J.C.; Rubio, AJ., "Diagonalizing properties of the discrete cosine transforms," Signal Processing, IEEE Transactions on , vol.43, no.11, pp.2631,2641, Nov 1995 [37] Lun, Daniel Pak-Kong; Wan-Chi Siu,, "Fast radix-3/9 discrete Hartley transform," Signal Processing, IEEE Transactions on , vol.41, no.7, pp.2494,2499, Jul 1993 [38] Huazhong Shu; Jiasong Wu; Chunfeng Yang; Senhadji, L., "Fast Radix-3 Algorithm for the Generalized Discrete Hartley Transform of Type II," Signal Processing Letters, IEEE , vol.19, no.6, pp.348,351, June 2012 [39] Prabhu, K.M.M.; Nagesh, A., "New radix-3 and 6 decimation-in-frequency fast Hartley transform algorithms," Electrical and Computer Engineering, Canadian Journal of , vol.18, no.2, pp.65,69, April 1993 [40] Sorensen, H.V.; Jones, D.L.; Burrus, C.S.; Heideman, M., "On computing the discrete Hartley transform," Acoustics, Speech and Signal Processing, IEEE Transactions on , vol.33, no.5, pp.1231,1238, Oct 1985
  • 24. [41] Wu, J.S.; Shu, H.Z.; Senhadji, L.; Luo, L.M., "Radix-3-3 Algorithm for The 2-D Discrete Hartley Transform," Circuits and Systems II: Express Briefs, IEEE Transactions on , vol.55, no.6, pp.566,570, June 2008 [42] Prabhu, K. M M, "An efficient radix-3 FHT algorithm," Digital Signal Processing Proceedings, 1997. DSP 97., 1997 13th International Conference on , vol.1, no., pp.349,351 vol.1, 2-4 Jul 1997 [43] Zhao, Z.-J., "In-place radix-3 fast Hartley transform algorithm," Electronics Letters , vol.28, no.3, pp.319,321, 30 Jan. 1992 [44] Anupindi, N.; Narayanan, S.B.; Prabhu, K.M.M., "New radix-3 FHT algorithm," Electronics Letters , vol.26, no.18, pp.1537,1538, 30 Aug. 1990 [45] Yiquan Wu; Zhaoda Zhu, "A new radix-3 fast algorithm for computing the DST-II," Aerospace and Electronics Conference, 1995. NAECON 1995., Proceedings of the IEEE 1995 National , vol.1, no., pp.324,327 vol.1, 22-26 May 1995