summaryrefslogtreecommitdiff
path: root/3808/CH2/EX2.6/Ex2_6.sce
blob: f66e967755561b30b6b157f30f1bc2b5095815c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//Chapter 02:Basic Structures: Sets, Functions, Sequences, Sums and Matrices

clc;
clear;

a=[2,0,0,0] //given
//index starts from 1 so a0 is not present
for i=2:4
    a(i)=a(i-1)+3
    mprintf("a[%d]=%d\n",i,a(i))
end

mprintf("\nOriginal List:\n")
for i=1:4
mprintf("a[%d]=%d\n",i,a(i))
end