Chebfun 是一個(gè)開(kāi)源軟件系統(tǒng),用于帶函數(shù)的數(shù)值計(jì)算。Chebfun 的數(shù)學(xué)基礎(chǔ)是采用我們所說(shuō)的“切比雪夫技術(shù)”實(shí)現(xiàn)的分段多項(xiàng)式插值。在Approximation Theory and Approximation Practice一書中,使用 Chebfun 示例描述了這些基礎(chǔ)。Chebfun 具有處理線性和非線性微分和積分算子的廣泛能力,它還包括線性代數(shù)概念的連續(xù)類似物,如 QR 和奇異值分解。Chebfun2 擴(kuò)展使用定義在 xy 平面矩形上的兩個(gè)變量的函數(shù)。

官網(wǎng)在這里
http://www.chebfun.org/https://github.com/chebfun/chebfun
運(yùn)行的demo

http://www.chebfun.org/docs/guide/chebfun_guide.pdf
官方有pdf文檔

也有在線的文檔
http://www.chebfun.org/docs/guide/addpath(chebfunroot), savepath這個(gè)命令用來(lái)將計(jì)算庫(kù)的路徑加到matlab的搜索環(huán)境

克隆庫(kù)以后,先解壓到一個(gè)位置上面
我選擇了C盤

點(diǎn)擊這里

包含子文件夾,遞歸的加入所有文件

體驗(yàn)一下,不報(bào)錯(cuò)
f = sin(12*x).*exp(-x); % A function on [-1, 1]g = max(f, 1./(x+2)); % The max of f and 1./(x+2)plot(g) % A function with discontinuous derivativesum(g) % The integral of gplot(diff(g)) % The derivative of gh = g + x - .8; % A function with several roots in [-1, 1]rr = roots(h); % Compute the roots of hplot(h, 'k', rr, h(rr), 'ro') % Plot h and its roots

自己寫個(gè)demo
http://www.chebfun.org/docs/guide/guide06.html
官方的資料真好,慢慢學(xué)習(xí)
https://github.com/Ewenwan/Algorithm_Interview_Notes-Chinese/blob/master/C-%E6%95%B0%E5%AD%A6/B-%E5%BE%AE%E7%A7%AF%E5%88%86%E7%9A%84%E6%9C%AC%E8%B4%A8.md
https://github.com/Ewenwan/Mathematics
https://github-wiki-see.page/m/Shuang0420/Shuang0420.github.io/wiki/matplotlib%E5%90%8C%E4%B8%80%E5%BC%A0%E5%9B%BE%E6%8B%9F%E5%90%88%E4%B8%A4%E6%9D%A1%E6%9B%B2%E7%BA%BF
一個(gè)不錯(cuò)的個(gè)人博客
這是推薦大家補(bǔ)充的學(xué)習(xí)資料