资源简介
Numerical Computing with MaTLAB 【MATLAB数值计算(2013修订版)】 Cleve B.Moler 编著 ,此书中所需要的工具箱 ncm。
是最新版本的书籍配套的工具箱。
Numerical Computing with MaTLAB 【MATLAB数值计算(2013修订版)】 Cleve B.Moler 编著 ,此书中所需要的工具箱 ncm。
是最新版本的书籍配套的工具箱。
代码片段和文件信息
function bizcard
% BIZCARD Future version of The MathWorks business card.
% Click anywhere on the card.
% Copyright 2014 Cleve Moler
% Copyright 2014 The MathWorks Inc.
clf reset
shg
set(gcf‘name‘‘MathWorks Business Card‘ ...
‘menu‘‘none‘‘numbertitle‘‘off‘);
ax = axes(‘pos‘[.125 .25 .75 .5]‘xtick‘[]‘ytick‘[]‘box‘‘on‘);
text(.3.8‘MathWorks‘‘fontsize‘24 ...
‘fontname‘‘Times New Roman‘‘fontweight‘‘normal‘);
text(.5.6‘CLEVE MOLER‘‘fontsize‘12);
text(.5.5‘Chief Scientist‘‘fontsize‘12);
text(.5.4‘moler@mathworks.com‘‘fontsize‘12);
text(.5.3‘508.647.7000‘‘fontsize‘12);
text(.1.17‘www.mathworks.com‘‘fontsize‘10);
text(.1.1‘MathWorks Inc. 3 Apple Hill Drive Natick MA 01760‘ ...
‘fontsize‘10);
L{1} = 30*membrane(125);
L{2} = 2*membrane(225);
L{3} = -2*membrane(325);
L{4} = 5*membrane(425);
L{5} = -3*membrane(525);
L{6} = 4*membrane(625);
axes(‘Position‘[.15 .55 .2 .2] ...
‘CameraPosition‘ [-193.4013 -265.1546 220.4819]...
‘CameraTarget‘[26 26 10] ...
‘CameraUpVector‘[0 0 1] ...
‘CameraViewAngle‘9.5 ...
‘DataAspectRatio‘ [1 1 .9]...
‘Visible‘‘off‘ ...
‘XLim‘[1 51] ...
‘YLim‘[1 51] ...
‘ZLim‘[-13 40]);
s = surface(L{1} ...
‘EdgeColor‘‘none‘ ...
‘FaceColor‘[0.9 0.2 0.2] ...
‘FaceLighting‘‘phong‘ ...
‘AmbientStrength‘0.3 ...
‘DiffuseStrength‘0.6 ...
‘Clipping‘‘off‘...
‘BackFaceLighting‘‘lit‘ ...
‘SpecularStrength‘1.0 ...
‘SpecularColorReflectance‘1 ...
‘SpecularExponent‘7);
light(‘Position‘[40 100 20] ...
‘style‘‘local‘ ...
‘Color‘[0 0.8 0.8]);
light(‘Position‘[.5 -1 .4] ...
‘Color‘[0.8 0.8 0]);
mu = sqrt([9.6397238445 15.19725192 2*pi^2 ...
29.5214811 31.9126360 41.4745099]);
set(gcf‘userdata‘false);
set(ax‘buttondownfcn‘‘set(gcf‘‘userdata‘‘~get(gcf‘‘userdata‘‘))‘);
stop = uicontrol(‘style‘‘toggle‘‘string‘‘X‘‘fontweight‘‘bold‘ ...
‘units‘‘norm‘‘pos‘[.95 .95 .05 .05]);
t = 0;
delta = .025;
while ~get(stop‘value‘)
Z = cos(mu(1)*t)*L{1} + sin(mu(2)*t)*L{2} + sin(mu(3)*t)*L{3} + ...
sin(mu(4)*t)*L{4} + sin(mu(5)*t)*L{5} + sin(mu(6)*t)*L{6};
set(s‘zdata‘Z)
pause(.01)
if get(gcf‘userdata‘)
t = t + delta;
end
end
close(gcf)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 5355 2016-03-29 16:04 C__\Program Files\MATLAB\R2016a\toolbox\matlab\demos\eigshow.m
文件 544 2016-03-29 16:04 C__\Program Files\MATLAB\R2016a\toolbox\matlab\demos\humps.m
文件 4348 2016-03-29 16:04 Contents.m
文件 351454 2016-03-29 16:04 Numerical Computing with MATLAB.mlappinstall
文件 2415 2016-03-29 16:04 bizcard.m
文件 16233 2016-03-29 16:04 blackjack.m
文件 583 2016-03-29 16:04 brownian.m
文件 1261 2016-03-29 16:04 bslashtx.m
文件 6575 2016-03-29 16:04 censusgui.m
文件 882 2016-03-29 16:04 circlegen.m
文件 1036 2016-03-29 16:04 crypto.m
文件 981 2016-03-29 16:04 digraph.m
文件 7415 2016-03-29 16:04 eigsvdgui.m
文件 778 2016-03-29 16:04 elnino.dat
文件 708 2016-03-29 16:04 encrypt.m
文件 1317 2016-03-29 16:04 fern.m
文件 72239 2016-03-29 16:04 fern.png
文件 4256 2016-03-29 16:04 fftgui.m
文件 3440 2016-03-29 16:04 fftmatrix.m
文件 810 2016-03-29 16:04 ffttx.m
文件 248 2016-03-29 16:04 fibnum.m
文件 283 2016-03-29 16:04 fibonacci.m
文件 2265 2016-03-29 16:04 finitefern.m
文件 1707 2016-03-29 16:04 flame.m
文件 4227 2016-03-29 16:04 floatgui.m
文件 2254 2016-03-29 16:04 fmintx.m
文件 8186 2016-03-29 16:04 fzerogui.m
文件 2478 2016-03-29 16:04 fzerotx.m
文件 1463 2016-03-29 16:04 gettysburg.txt
文件 405 2016-03-29 16:04 goldfract.m
文件 401 2016-03-29 16:04 goldrect.m
............此处省略51个文件信息
- 上一篇:前推回代配电网潮流计算附33节点算例
- 下一篇:EMD matlab代码
评论
共有 条评论