会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
玮哥的博客
朝闻道 夕死可矣
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
9
10
11
12
13
14
15
16
17
···
20
下一页
2015年4月1日
Gauss-Laguerre quadrature rule
摘要: % matlab script to derive the 2-point Gauss-Laguerre quadrature rule% and use it on an example% inelegantly set up equations from meth...
阅读全文
posted @ 2015-04-01 01:07 vigorpush
阅读(316)
评论(0)
推荐(0)
编辑
how to use the mathmatical constant "e" in conjunction with a vector
摘要: e=exp(1);
阅读全文
posted @ 2015-04-01 00:58 vigorpush
阅读(110)
评论(0)
推荐(0)
编辑
2015年3月31日
matlab的解方程的例子
摘要: syms x yz=exp(2*x+y)+cos(3*x*y)-exp(1)-1;zz=subs(z,x,1)solve(zz)
阅读全文
posted @ 2015-03-31 15:25 vigorpush
阅读(389)
评论(0)
推荐(0)
编辑
matlab中syms与sym有什么区别
摘要: syms x y %就是定了符号变量x y以后x y就可以直接使用了,有他们运算出来的结果也是符号变量当然上面的也可以x=sym('x'),y=sym('y')sys('a+b')%就是将a+b转化为符号表达式两者有不同的使用场合比如符号变量涉及的个数比较少,但是使用...
阅读全文
posted @ 2015-03-31 15:17 vigorpush
阅读(1525)
评论(0)
推荐(0)
编辑
matlab 的解函数的不同方式
摘要: f=@(x)(sin(x)+2*x);f(pi/2)f=sym('sin(x)+2*x');subs(f,'x',pi/2)%将 g 表达式中的符号变量 s 用 数值 f 替代f=inline('sin(x)+2*x');f(pi/2)
阅读全文
posted @ 2015-03-31 14:39 vigorpush
阅读(331)
评论(0)
推荐(0)
编辑
potplayer打开多个视频文件
摘要: 选项-基本-多重处理方式-新开一个播放进程播放
阅读全文
posted @ 2015-03-31 13:42 vigorpush
阅读(1381)
评论(0)
推荐(0)
编辑
Matlab quad
摘要: 1x3−2x−5dx, (from 0 to 1)write a function myfun that computes theintegrand:function y = myfun(x) y = 1./(x.^3-2*x-5);Then pass @myfun,...
阅读全文
posted @ 2015-03-31 10:16 vigorpush
阅读(237)
评论(0)
推荐(0)
编辑
Matlab adaptive quadrature
摘要: % script to perform adaptive quadratureclear all, close allglobal pts% function to be integrated defined in routine ff = 'integrand';a...
阅读全文
posted @ 2015-03-31 10:08 vigorpush
阅读(242)
评论(0)
推荐(0)
编辑
matlab @
摘要: 变量名=@(输入参数列表)运算表达式例如, 前面那个计算变量平方的函数可以简单地写为这个匿名函数:mysqr1=@(x)x.*x之后, 执行mysqr1(变量名), 即可计算该变量的平方, 注意, mysqr1属性是函数句柄变量, 而不是这个表达式; 还有要注意这个表...
阅读全文
posted @ 2015-03-31 09:31 vigorpush
阅读(130)
评论(1)
推荐(0)
编辑
MATLAB indexing question
摘要: Question:I have a matrix, for exampleA = [ 1 2 3; 4 5 6; 7 8 9] ;and a vector of size 1x3 which specifies which element in each row is...
阅读全文
posted @ 2015-03-31 03:54 vigorpush
阅读(249)
评论(0)
推荐(0)
编辑
上一页
1
···
9
10
11
12
13
14
15
16
17
···
20
下一页
公告