Post Reply 
Problem: extracting elements on CAS mode
07-20-2018, 05:11 PM (This post was last modified: 07-20-2018 09:32 PM by compsystems.)
Post: #2
RE: Problem: extracting elements on CAS mode
Now inform:

Python compatibility enabled. List index will start at 0,
run index:=1 ... or 0 to disable Python compatibility.

index:=0; returns "[] index start 0"

M1:=[[1,2],
[3,4]];

M1(0,0) returns "Error: Invalid input" // ok
M1(1,1) returns 1 // ok
M1[0,0] returns input: M1[0,1] output [[1,2],[3,4]] // ?

index:=1; returns "[] index start 0"

M1:=[[1,2],
[3,4]];

M1(0,0) returns "Error: Invalid input"
M1(1,1) returns 1
M1[0,0] returns input: M1[-1, 0] output: [[1,2],[3,4]] // ?
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: Problem: extracting elements on CAS mode - compsystems - 07-20-2018 05:11 PM



User(s) browsing this thread: 1 Guest(s)