自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 收藏
  • 关注

原创 Matlab 小技巧

imagesc后加上axis image,这样可以使输出的图片与原始矩阵吻合

2014-06-25 15:35:36 582

原创 maltab 图像保存方法

saveas(gcf,‘地址’)imwrite(变量)

2014-05-31 21:50:55 1362

原创 Matlab中pwelch的用法总结

刚刚接触谱分析的内容,用到了

2014-05-09 21:46:31 29462 1

原创 matlab 高斯迭代的不同写法

%高斯回代的高富帅写法function X=GSHD_gaofushuai(A,B)N=size(A);n=N(1);for i=n:-1:1    if(i        deta=A(1,(i 1):n)*X((i 1):n,1);             else        deta=0;    X(i,1)=(B(i,1) - deta)/A(i

2013-09-26 21:21:07 2474

原创 数值方法 线性方程组的高斯消元法

function X=uptrbk(A,B)%Input     -A is an N x N nonsingular matrix%          -B is an N x 1 matrix%Output    -X is an N x 1 matrix containing the solution to AX=B%Initialize X and the temporar

2013-09-14 12:51:55 1080

原创 数值方法 回代程序(matlab)

function X=backsub(A,B)%Input -A is an n x upper-triangular nonsigular matrix%      -B is an n x 1 matrix%Output -X is the solution to the linear system AX=B%  Find hte dimension of B and hte

2013-09-14 12:46:53 3779

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除