上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 41 下一页
摘要: matlab版本为:matlab7.11.0(R2010b)vs20081.在matlab中生成dll在m文件中实现如下功能:获得N个魔方矩阵的秩。m文件的内容如下:function r = mrank(n)r = zeros(n,1);for k=1:n r(k) = rank(magic(k));end将上述内容保存为:mrank.m在matlab的command 窗口键入:>> mcc -B csharedlib:mrank mrank.m %该命令将在后面做说明在matlab7.0中执行上述命令后生成下面几个文件:mrank.exp mrank.exports mrank. 阅读全文
posted @ 2012-09-25 12:47 微雪 阅读(373) 评论(0) 推荐(0)
摘要: TOKYO—Japan's prime minister warned China that its inflammatory reaction to a territorial dispute—from violent protests to apparent informal trade sanctions—could further weaken China's already-fragile economy by scaring away foreign investors. The comments showed the risks that the diplomat 阅读全文
posted @ 2012-09-24 22:52 微雪 阅读(245) 评论(0) 推荐(0)
摘要: “Let us not look back in anger, nor forward in fear, but around in awareness.” ~James ThurberEver thought you had achieved everything you wanted to? I did.My teens had passed in a blur of self-loathing regarding my body (tape measure, thighs, and many tears; need I say more?).a blur of:模糊不清的一片 self. 阅读全文
posted @ 2012-09-22 13:17 微雪 阅读(1284) 评论(0) 推荐(0)
摘要: Mobile phones have become an essential part of our everyday life. Through a special month-long series,"Our Mobile Society," we examine how phones and tablets are changing the way we live.tablet:平板电脑,药片Lagos, Nigeria (CNN)-- A little over a decade ago there were about 100,000 phone lines in 阅读全文
posted @ 2012-09-21 19:31 微雪 阅读(1318) 评论(0) 推荐(0)
摘要: ABOUT three thousand protesters gathered outside Shanghai’s Japanese consulate on September 16th. The young crowd, mostly aged 20-35, had draped themselves with the Chinese flag, chanting anti-Japan slogans and brandishing portraits of Chairman Mao. But the presence of riot police and soldiers had a 阅读全文
posted @ 2012-09-20 07:28 微雪 阅读(359) 评论(0) 推荐(0)
摘要: Subscript. indices must either be real positive integers or logicals中文解释:下标索引必须是正整数类型或者逻辑类型出错原因:在访问矩阵(包括向量、二维矩阵、多维数组,下同)的过程中,下标索引要么从 0 开始,要么出现了负数。注:解决办法:自己调试一下程序,把下标为 0 或者负数的地方修正。举例:【错误代码】:代码:for s = 0:0.2:2a(s) = 4 * s - 1;end【正确代码】:代码:for s = 1:10a(s) = 4 * s - 1;end当然,这样的赋值使用循环是低效的,因此不提倡Undefined 阅读全文
posted @ 2012-09-19 17:00 微雪 阅读(3019) 评论(0) 推荐(0)
摘要: A reporter's high-profile resignation has provoked pessimism about the future of China's news media.resignation:辞职,放弃,顺从 pessimism:悲观,厌世主义Recently, Jian Guangzhou (@简光洲), one of the most reputed investigative journalists in China, quit the Oriental Daily (@东方早报) and announced he was ending h 阅读全文
posted @ 2012-09-19 09:17 微雪 阅读(419) 评论(0) 推荐(0)
摘要: In the neighbourhood over the fence from Italy's – andEurope's – biggest steelworks, Francesco Mastrocinque is poking his toe into the layer of black and red powder that covers every pavement and counting his friends who have died ofcancerand respiratory illnesses.steelworks:炼钢厂 pavement:人行道 阅读全文
posted @ 2012-09-18 00:04 微雪 阅读(291) 评论(0) 推荐(0)
摘要: MEN today are haunted by the “spectre of a coming gender apocalypse”, Hanna Rosin declares in her new book, “The End of Men”. How worried should they be? It is true that women are contributing more than ever to household income. They dominate university attendance around the world. In South Korea mo 阅读全文
posted @ 2012-09-12 08:48 微雪 阅读(1127) 评论(0) 推荐(0)
摘要: 奥地利符号计算研究所(Research Institute for Symbolic Computation,简称RISC)的Christoph Koutschan博士在自己的页面上发布了一篇文章,提到他做了一个调查,参与者大多数是计算机科学家,他请这些科学家投票选出最重要的算法,以下是这次调查的结果,按照英文名称字母顺序排序。A* 搜索算法——图形搜索算法,从给定起点到给定终点计算出路径。其中使用了一种启发式的估算,为每个节点估算通过该节点的最佳路径,并以之为各个地点排定次序。算法以得到的次序访问这些节点。因此,A*搜索算法是最佳优先搜索的范例。集束搜索(又名定向搜索,Beam Search 阅读全文
posted @ 2012-09-11 16:45 微雪 阅读(288) 评论(0) 推荐(0)
上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 41 下一页