I want to input a vector "a" (or matrix) to a procedure and do some algebraic operations with its elements:
set a(1) 2;
set a(2) 3;
proc mult {a} {
global b
set b [expr $a(1)*$a(2)]
}
mult $a
puts "$b"
when I run this script it says:
can't read "a": variable is array
can anyone help me...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.