Ask Your Question
1

How to define a matrix conditional to a list of strings

asked 3 years ago

Cyrille gravatar image

updated 3 years ago

Need a little help. suppose I have the following list :

signs=['=','=','>=','>=','>=','<=','<=','<=','<=','<=']

with this list I need to create in Sagemath a matrix with 10 lines and 18 columns each equality/inequality sign correspond to a line with

'=' gives 1 on the corresponding line the other 17 enters being 0
'>=' gives - 1, 1 on the corresponding line the other 16 enters being 0
'<=' gives 1, 1 on the corresponding line the other 16 enters being 0

and of course, there is only one 1 (-1) in each column.

What I want is a function. Someone will tell me that I must learn Python (smile) but each of my tentatives fails.

Thank in advance for the help

Preview: (hide)

2 Answers

Sort by » oldest newest most voted
1

answered 3 years ago

How about this:

signs = ['=','=','>=','>=','>=','<=','<=','<=','<=','<=']
# lines: will be the rows of the matrix
lines = []
# column: where to put the next nonzero entry
column = 0
# total number of columns in matrix
size = sum(len(s) for s in signs)
for s in signs:
    if s == '=':
        new = column * [0] + [1] + (size - column - 1) * [0]
        column += 1
    elif s == '>=':
        new = column * [0] + [-1, 1] + (size - column - 2) * [0]
        column += 2
    elif s == '<=':
        new = column * [0] + [1, 1] + (size - column - 2) * [0]
        column += 2
    lines.append(new)
mat = matrix(lines)
Preview: (hide)
link
1

answered 3 years ago

Max Alekseyev gravatar image

In a compact form:

signs = ['=','=','>=','>=','>=','<=','<=','<=','<=','<=']
shift = [sum(len(signs[i]) for i in range(j)) for j in range(len(signs))]
Matrix(ZZ, 10, 18, lambda i,j: 0 if j<shift[i] or j>shift[i]+1 else -1 if j==shift[i] and signs[i]=='>=' else 0 if j==shift[i]+1 and signs[i]=='=' else 1)
Preview: (hide)
link

Your Answer

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

Add Answer

Question Tools

1 follower

Stats

Asked: 3 years ago

Seen: 312 times

Last updated: Feb 26 '22