Chebyshev-Pade Algorithm逼近

function [ahat,bhat]=chebyshevpade(f,tol) %see more go to www.matlabsky.cn %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% chebyshevpade.m%% Chebyshev-Pade Algorithm%% This script takes the function f(x) sampled at the Chebyshev-Gauss-Lobatto % nodes and compu...
源码分享 | 2008-12-19 16:35 | 阅读 3200 次 | 评论 1 条

Matlab中圆台绘制的实现

function [Cone,EndPlate1,EndPlate2] = Cone(X1,X2,R,n,cyl_color,closed,lines)% %see more information go to www.matlabsky.cn% This function constructs a cylinder connecting two center points % % Usage :% [Cone,EndPlate1,EndPlate2] = Cone(X1,X2,R,n,cyl_color,closed,lines)% % Cone-------Handle o...
源码分享 | 2008-12-19 16:34 | 阅读 5848 次 | 评论 1 条

Matlab中指数拟合源代码

function s=exp2fit(t,f,caseval,options) %for more information go to www.matlabsky.cn % exp2fit solves the non-linear least squares problem% of the specific exponential functions:% --- caseval = 1 ----% f=s1+s2*exp(-t/s3)% ------------------%% --- caseval = 2 ----% f=s1*(1-exp(-t/s2)) %i....
源码分享 | 2008-12-19 16:33 | 阅读 12929 次 | 评论 0 条

图论Prime算法Matlab源代码

%Prims Algorithm%coded by Vikramaditya V. Kundur %more information www.matlabsky.cn clcfid = fopen('testfile1.txt', 'r'); % Input file%Input file should be in the form of a text file.%5 %order of matrix%0 2 3 4 0%2 0 1 2 5%3 1 0 1 2%4 2 1 0 2%0 5 2 2 0l = fscanf(fid, '%g %g...
源码分享 | 2008-12-19 16:31 | 阅读 5646 次 | 评论 0 条

Matlab有理式多项式拟合

function [N, D] = ratpolyfit(x,y,kn,kd)% Ratpolyfit Rational Polynomial Fitting%% This programs finds 2 polynomials N(x) and D(x),% of user given order kn and kd respectively,% such that N(xi)/D(xi) ~= y(xi) in a least squares sense.%%usage: [N, D] = ratpolyfit(x, y, kn, kd)%%note: kn and kd...
源码分享 | 2008-12-19 16:30 | 阅读 3216 次 | 评论 0 条

Dijkstr最短路径搜索Matlab源代码

function [sp, spcost] = dijkstra(matriz_costo, s, d)% This is an implementation of the dijkstra磗 algorithm, wich finds the % minimal cost path between two nodes. It磗 supoussed to solve the problem on % possitive weighted instances. % the inputs of the algorithm are:%farthestNode: the farthest no...
源码分享 | 2008-12-19 16:27 | 阅读 7016 次 | 评论 0 条

Matlab中如何实现绘制任意圆柱

本代码实现了,由两点和半径绘制空间任意圆柱 function [Cylinder EndPlate1 EndPlate2] = cylinder3(X1,X2,r,n,cyl_color,closed,lines)%% This function constructs a cylinder connecting two center points % % Usage :% [Cylinder EndPlate1 EndPlate2] = cylinder3(X1+20,X2,r,n,'r',closed,lines)% % Cylinder-------Handle of the...
源码分享 | 2008-12-19 16:26 | 阅读 7320 次 | 评论 0 条

Matlabsky的简介

Matlab Sky联盟----打造最优秀、专业和权威的Matlab技术交流平台! 网址:http://www.matlabsky.cn /com/org/net 邮箱:matlabsky@gmail.com QQ群:23830382 40510634 16233891(满了) 44851559(满了) MatlabSky拥有40多个专业版块,内容涉及资料下载、视频教学、数学建模、 数学运算、程序设计、GUI开发、simulink仿真、统计概率、拟合优化、 扩展编程、算法研究、控制系统、信号通信、图像处理...
Matlabsky | 2008-12-19 16:22 | 阅读 2629 次 | 评论 0 条

最全的Matlab经典教程免费下载

薛定宇《高等应用数学问题的MATLAB求解》http://www.matlabsky.com/thread-177-1-1.html樊京《MATLAB控制系统应用与实例》http://www.matlabsky.com/thread-324-1-1.html李南南《MATLAB 7简明教程》http://www.matlabsky.com/thread-321-1-1.htmlsandy《Matlab与数值分析简明教程》http://www.matlabsky.com/thread-320-1-1.html满晓宇《战胜MATLAB必做练习50题》http://www.matlabsky....
经典教程 | 2008-12-19 16:17 | 阅读 70384 次 | 评论 0 条

最全的matlab工具箱免费下载

Gerald Recktenwald 《Numerical Methods with MATLAB》(NMM1.5数值分析工具箱) http://www.matlabsky.com/thread-325-1-1.htmlDahua Lin《Statistical Learning Toolbox》(统计学习工具箱) http://www.matlabsky.com/thread-301-1-1.htmlSergiy Iglin《Graph Theory Toolbox》(图论工具箱) http://www.matlabsky.com/thread-295-1-1.htmlJouni Ha...
浏览135111次