摘要:
第六章 MATLAB IN ENGINEERING Polynomial Differentiation多项式微分 %幂级数 f(x) = x^3-2x-5; p = [1 0 -2 -5] %自变量前系数 polyval() eg: a = [9, -5, 3, 7]; x = -2:0.01 阅读全文
2021年4月10日 #
2021年4月3日 #
摘要:
第五章:初级绘图进阶 Special Plots loglog semilogx semilogy plotyy hist bar pie polar Logarithm Plots x = logspace(1,-1,100); y = x.^2; subplot(2,2,1); plot(x,y 阅读全文
2021年4月2日 #
摘要:
Input promat = 'This is a sentence.' x = input(prompt) %显示prompt中的文本并等待用户输入数值或者表达式后按Return %如果用户什么都不输入,则input会返回空矩阵 str = input(prompt,'s') %返回输入的文本,而 阅读全文
2021年4月1日 #
摘要:
第四章:Graph Plot form 'Data' plot(x,y); plot(y); %x = [1…n], n = length(y) EG1: plot(cos(0:pi/20:2*pi)); EG1.1: plot(cos(0:pi/20:2*pi)); plot(sin(0:pi/2 阅读全文
2021年3月28日 #
摘要:
###本章内容十分多 第三章:Variables and Data access Data Types numeric:double、single、int8(16、32、64bit[integer])、uint8(16、32、64bit[unsigned]) double转成integer: A = 阅读全文
摘要:
第二章 APPLICATIONS OF MATLAB IN ENGINEERING MATLAB Script %:注解 %%:分节符 Relational Operators < <= > >= == ~=(not equal to) &&(and) ||(or) Script Flow if e 阅读全文
摘要:
第一章 基本操作 MATLAB as A Calculator operators: + - * / ^ 顺序: Parenthesis () Power (^) *or/ +or- 特殊的: sqrt();根号 exp();e为底的幂 log();e为底的对数 可以使用ans去减少单行的复杂程度 阅读全文
摘要:
由于Mooc上有关C 的课程并不是很全面,网络上有关于C 的消息过于杂糅,所以暂时停止C的学习,重启时间暂定,等什么时候需要的时候再做重启。 阅读全文
2021年3月14日 #
摘要:
数组例子:统计个数 #include <stdio.h> int main(void) { int x; int count[10]; int i; for ( i=0; i<10; i++) //对count进行初始化 { count[i] = 0; } scanf("%d", &x); wh 阅读全文
摘要:
数组 int number[100]; //这个数组可以放100个数 int x; int cnt = 0; double sum = 0; scanf("%d", &x); while ( x != -1 ) { number[cnt] = x; //对数组中的元素赋值 sum += x; cnt 阅读全文