in scilab In the command a=0:2:10; 10 denotes
Answers
Answered by
0
Answer:
A loop from 0 to 10 with a step value of '2' (0, 2, 4, 6, 8, 10)
Step-by-step explanation:
A loop follows an amount of instructions done by the user, and the main concept of it is that it makes a sequence of numbers, letters, or whatever we tell it to do and it only stop when a certain condition is reached.
We use a lot of loop in programming since it is a fundamental idea in writing programs.
Then, we use the word 'for' in scilab is used to define loops.
In this case this would generate a loop from 0 to 10 with a step value of '2' (0, 2, 4, 6, 8, 10)
Similar questions