Ask Your Question
0

Saving data to an array in sage

asked 2013-02-22 08:13:52 +0200

assadabbasi gravatar image

Hi,

How can I save data to an array in sage. For example in MATLAB we car make an array of data like this

a =0;

for i=1:10

a = a + 1;

b(i,:) = a

end

Similarlay how can I save data in 2D array.

Thanks

edit retag flag offensive close merge delete

4 Answers

Sort by ยป oldest newest most voted
1

answered 2013-02-23 16:46:36 +0200

calc314 gravatar image

Here are two approaches.

Building each row as a list...

b=0
c=[]
for i in [1..10]:
    tmp=[]
    for j in [1..10]:
        b+=1
        tmp.append(b)
    c.append(tmp)
d=matrix(c)
print d
d[0,1]

Using nested list comprehensions...

c=[[10*j+i for i in [1..10]] for j in [0..9]]
d=matrix(c)
d
edit flag offensive delete link more
1

answered 2013-02-22 09:57:09 +0200

calc314 gravatar image

I don't know here whether you would prefer a list or a matrix or an array as your final data type. But, here is one solution that first builds a list, in case you'd rather have a list. I'm sure there are many other more efficient solutions depending on what you want in the larger picture of what you are doing.

a=0
b=[]
for i in [1..10]:
    a+=1
    b.append(a)
matrix(b)
edit flag offensive delete link more
0

answered 2013-02-25 00:20:41 +0200

assadabbasi gravatar image

Thank you very much @calc314

edit flag offensive delete link more
0

answered 2013-02-22 14:01:27 +0200

assadabbasi gravatar image

updated 2013-02-22 14:11:37 +0200

Thanks for the answer. Suppose I want to create a 2D matrix and I have to access its rows or columns or an individual elements. My data type caan be int/float/real number. What can be a solution in this case. An equivalent MATLAB code can be like this.

a = 0

b = 0

c = 0

for i = 1:10

for j = 1:10

  b = b +1

  c(i,j) = b

end

end

d = c(1,2)

Sorry I am quite new user of sage.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 2013-02-22 08:13:52 +0200

Seen: 535 times

Last updated: Feb 25 '13