program_5d.m

来自「《Dynamical Systems with Applications usi」· M 代码 · 共 18 行

M
18
字号
% Chapter 5 - Fractals and Multifractals.
% Program_5d - The tau curve.
% Copyright Birkhauser 2004. Stephen Lynch.

% Plot a tau curve for a multifractal Cantor set (Figure 5.16a).
ezplot('(log((1/9)^x+(8/9)^x))/(log(3))',[-20,20])
axis([-20 20 -8 20])
fsize=15;
set(gca,'xtick',[-20:10:20],'FontSize',fsize)
set(gca,'ytick',[-8:4:20],'FontSize',fsize)
xlabel('\itq','FontSize',fsize)
ylabel('\it{\tau(q)}','FontSize',fsize)
title(' ')

% End of Program_5d.


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?