what is happening here?

2 次查看(过去 30 天)
for j = 1:6 - 1
if sign(i(j,1)) * sign(i(j+1,1)) == -1
m = m + 1;
end
end
in this code what does "1:6-1" means?

采纳的回答

Star Strider
Star Strider 2019-10-22
‘in this code what does "1:6-1" means?
It is a kludgy way of writing:
1:5
as running it will demonstrate:
q = 1:6-1
produces:
q =
1 2 3 4 5

更多回答(1 个)

Image Analyst
Image Analyst 2019-10-22
Try it in the command window:
>> 1:6-1
ans =
1 2 3 4 5
First it does (6-1) to create a scalar 5, then it goes from 1 to (6-1) or 1 to 5 to give [1,2,3,4,5].

类别

Help CenterFile Exchange 中查找有关 Data Types 的更多信息

标签

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by