学习心得
文章平均质量分 61
一百元
这个作者很懒,什么都没留下…
展开
-
Inner matrix dimensions must agree.错误解决心得
function [r,p,q,x] = yn(n)r = 0.994 * (1/2)^n;p = -0.006 + 1.006 * (1/2)^n;q = -1.503 * (4 / 3) * (1 - (1 / 4)^n) * 2^(n-1) + 2^n;x = (1/2)^n;如上编程语言,用matlab运行t = 1:1:10;>> [a,b,c,d] = yn(t);原创 2013-09-04 22:30:45 · 14206 阅读 · 1 评论 -
不限参数的使用
params 关键字在方法成员的参数列表中使用,为该方法提供了参数个数可变的能力 它在只能出现一次并且不能在其后再有参数定义,如using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication1 { class App {原创 2014-09-04 13:02:26 · 376 阅读 · 0 评论