1樓:
s=0;
for i=1:100
s=s+i;
ends
程式的功能是計算 1+2+...+100 的和,程式用到了一個 for 迴圈結構,基本語句比較簡單。
擴充套件資料matlab常用的基本數學函式
abs(x):純量的絕對值或向量的長度
angle(z):複數z的相角(phase angle)sqrt(x):開平方
real(z):複數z的實部
imag(z):複數z的虛部
conj(z):複數z的共軛複數
round(x):四捨五入至最近整數
fix(x):無論正負,捨去小數至最近整數floor(x):地板函式,即捨去正小數至最近整數
2樓:匿名使用者
a=1:100;
s=sum(a);
3樓:匿名使用者
n=1;s=0;
while(n<=100)
s=s+n;
n=n+1;end
4樓:匿名使用者
我的最簡潔哈哈
sum(1:100)
matlab語言很強大
5樓:小學輔導資料小屋
我感覺用for語句比較簡潔
clear all;
sum=0;
for i=1:100
sum=sum+i;end
matlab中編寫一個函式求1到100的和
6樓:匿名使用者
可以用求和函式求解。
syms n
symsum(n,1,100)
7樓:呼德水
x = 1:100;
y = sum(x)
用python程式設計求1 ,用python程式設計求1 1 2 1 3 1 4 1 5 累加和,資料項小於0 1時停止
樹不開叉 def summa summ 0 for i in range 1,100 fl 1.0 i if fl 0.1 summ fl else print the sum is summreturn sum summa 注意縮排 def iteritem limit x 1.while 1 v...
用matlab程式設計解數學題(急)
天上的一條龍 檔案1jisi.m creat the function for jisi let x 1 x,x 2 y function dx jisi t,x,a,b,c s sqrt c x 1 2 a t x 2 2 dx b c x 1 s b a t x 2 s 檔案2seajisi.m...
用DO WHILE語句程式設計計算1 2
public class lianxi2 system.out.println sum system.out.println dowhile i 101 system.out.println sum1 system.out.println for i 1 i 101 i system.out.pri...