上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 25 下一页
摘要: 原文地址:常用技巧">matlab 常用技巧作者:我的视界(1)常用的操作命令命 令该命令的功能命 令该命令的功能cd显示或改变工作目录hold图形保持命令clc清除工作窗load加载指定文件的变量clear清除内存变量pack整理内存碎片clf清除图形窗口path显示搜索目录di... 阅读全文
posted @ 2013-03-11 12:48 dreamsyeah 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 原文地址:基本语句">matlab 基本语句作者:我的视界matlab 基本语句1.循环语句forfor i=s1:s3:s2 循环语句组end解释:首先给i赋值s1;然后,判断i是否介于s1与s2之间;如果是,则执行循环语句组,i=i+s3(否则,退出循环.);执行完毕后,继续下一次... 阅读全文
posted @ 2013-03-11 12:47 dreamsyeah 阅读(247) 评论(0) 推荐(0) 编辑
摘要: 原文地址:基本语句">matlab 基本语句作者:我的视界matlab 基本语句1.循环语句forfor i=s1:s3:s2 循环语句组end解释:首先给i赋值s1;然后,判断i是否介于s1与s2之间;如果是,则执行循环语句组,i=i+s3(否则,退出循环.);执行完毕后,继续下一次... 阅读全文
posted @ 2013-03-11 12:47 dreamsyeah 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 原文地址:基本语句">matlab 基本语句作者:我的视界matlab 基本语句1.循环语句forfor i=s1:s3:s2 循环语句组end解释:首先给i赋值s1;然后,判断i是否介于s1与s2之间;如果是,则执行循环语句组,i=i+s3(否则,退出循环.);执行完毕后,继续下一次... 阅读全文
posted @ 2013-03-11 12:47 dreamsyeah 阅读(354) 评论(0) 推荐(0) 编辑
摘要: disp('This program calculates the day of year given the');disp('current date.');month = input('Enter current month (1-12):');day = input('Enter cur... 阅读全文
posted @ 2013-03-06 20:29 dreamsyeah 阅读(753) 评论(0) 推荐(0) 编辑
摘要: disp('This program calculates the day of year given the');disp('current date.');month = input('Enter current month (1-12):');day = input('Enter cur... 阅读全文
posted @ 2013-03-06 20:29 dreamsyeah 阅读(2490) 评论(0) 推荐(0) 编辑
摘要: x=0:0.1:40;y=sin(x);plot(x,y,'b-.','LineWidth',2);hold onplot(x,y,'go','MarkerSize',8,'MarkerFaceColor','r');title('对画线的增强控制实例')xlabel('x');ylabel(... 阅读全文
posted @ 2013-03-06 14:16 dreamsyeah 阅读(166) 评论(0) 推荐(0) 编辑
摘要: % Scripte file: funxy.m%% Purpose:% This program solves the function f(x,y) for a% user-specified x and y, where f(x,y) is defined as:% _% |% | x +... 阅读全文
posted @ 2013-03-05 21:50 dreamsyeah 阅读(184) 评论(0) 推荐(0) 编辑
摘要: % Scripte file: funxy.m%% Purpose:% This program solves the function f(x,y) for a% user-specified x and y, where f(x,y) is defined as:% _% |% | x +... 阅读全文
posted @ 2013-03-05 21:50 dreamsyeah 阅读(223) 评论(0) 推荐(0) 编辑
摘要: % Purpose:% This program solves for the roots of a quadraticequation% of the form a*x^2 + b*x + c = 0. It calculates theanswers% regardless of the ... 阅读全文
posted @ 2013-03-05 21:40 dreamsyeah 阅读(285) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 25 下一页