summaryrefslogtreecommitdiff
path: root/3808/CH2/EX2.7/Ex2_7.sce
blob: 35f27e4c5bda78dd031f1f140f8b845b3084ee71 (plain)
1
2
3
4
5
6
7
8
9
10
11
//Chapter 02:Basic Structures: Sets, Functions, Sequences, Sums and Matrices

clc;
clear;

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