随笔分类 -  Mathematica

摘要:矩阵的奇异值:设A为复数域内m*n阶矩阵,A*表示A的共轭转置矩阵,A*·A的n个非负特征值的算术平方根(即A*·A的开根号值)叫作矩阵A的奇异值。记为σi(A)。如果把A*·A的特征值记为λi(A*·A),则σi(A)=sqrt(λi(A*·A))。或者说矩阵A的奇异值是A*·A的特征值的平方根。... 阅读全文
posted @ 2015-10-14 14:53 GIS for All 阅读(2507) 评论(0) 推荐(0)
摘要:&/@Shorthand notation for MapIf[PrimeQ[#], Framed@Style[#, Orange, Bold, 15], #] & /@ Range[250]Grid@Partition[If[PrimeQ[#], Tooltip[Framed@Style... 阅读全文
posted @ 2015-01-12 21:37 GIS for All 阅读(119) 评论(0) 推荐(0)
摘要:Plot[Sin[x], {x, 0, Pi}]Plot[10000 Sin[x], {x, 0, Pi}]直接作图左边无法对齐,影响图的美观。可以使用左边界空格实现列对齐,代码如下:options = {ImageSize -> 400, Frame -> True, ImagePadding... 阅读全文
posted @ 2015-01-12 21:09 GIS for All 阅读(148) 评论(0) 推荐(0)
摘要:In the event that a calculation appears to be running excessively long, one can abort thecalculation by selecting Evaluation from the Mathematica menu... 阅读全文
posted @ 2015-01-05 20:37 GIS for All 阅读(149) 评论(0) 推荐(0)
摘要:数值积分方法很多,Mathematica中至提供了NIntegrate。具体算法可参照官方帮助。http://reference.wolfram.com/language/tutorial/NIntegrateOverview.html 阅读全文
posted @ 2014-12-31 08:58 GIS for All 阅读(693) 评论(0) 推荐(0)