MATHEMATICA TUTORIAL, Part 2.1 - Brown University
www.cfm.brown.edu › Mathematica › ch1Jul 15, 2021 · Glossary. The main objective of this chapter is to define a function of a square matrix. Specifically, suppose that A is a square matrix and f (λ) is an admissible function (this term will be clarified later) of real or complex variable λ. Although Mathematica has a deficated command MatrixFunction, this chapter presents several approaches to ...
MATHEMATICA tutorial, part 2.1: Vectors
www.cfm.brown.edu › Mathematica › ch1In Mathematica, defining vectors and matrices is done by typing every row in curly brackets: v = {1,2^6 ,Sin [x]} Out [1]= {1, 2^6, Sin [x]} So v is a vector with three components, v [ [1]] =1, v [ [2]]= 2^6, and v [ [3]]=Sin [x]. Double bracket notation is abbreviation for the Mathematica command Part.