MATLAB中for语句的求和 在m文件里如何编辑

2024-12-16 00:54:52
推荐回答(2个)
回答1:

sum=0
for i=1:n
sum=B+sum;
end
n是求和的次数,B是求和的表达式。试试把

回答2:

for i=1:结尾个数
中间累加
end