Giter Site home page Giter Site logo

interdata-basic's People

Watchers

 avatar  avatar

interdata-basic's Issues

Implement PRINT USING <format>

Format characters are +-@,.$^
@ represents a digit
. Represents the decimal point
+ Represents a fixed plus sign
- Represents a fixed minus sign
++ or -- Floating sign
$ Fixed dollar sign
$$ Floating dollar sign
, Separator comma
^ Exponent indicator

Implement Matrix commands

Implement Matrix commands:

  • MAT READ A,B, ... Read DATA values for previously dimensioned arrays.
  • MAT INPUT A,B ... Input values for previously dimensioned arrays.
  • MAT PRINT A,B, ... Print current values of previously dimensioned arrays. (The semi-colon print delimiter can also be used. )
  • MAT A=B Matrix A is dimensioned to the dimensions of matrix B and the values of B are stored into A.
  • MAT A=B+C Add or subtract matrices Band C. The dimensions of Band C must be identical. Dimension A to the dimensions of B and C and store the result into A.
  • MAT A=B-C
  • MAT A=B*C Matrix multiply B and C. Dimension A to the dimensions of the resulting matrix and store the values into A. The dimensions of B
    and C must be compatible as defined later in the section on matrix multiplication.
  • MAT A=(expression)*B Scalar multiply matrix B by the parenthesized expression. Dimension A to the dimensions of B and store the values into A
  • MAT A=INV(B) Invert matrix B. Dimension A to the dimensions of Band store the values of the inverse matrix into A. B must be a square matrix.
  • MAT A=TRN(B) Transpose matrix B. Dimension A to the dimensions of the resulting matrix and store the values into A. A and B must be two
    distinct arrays.
  • MAT A=(expression) Store a constant value in all elements of A.
  • MAT A=IDN Store the identity matrix in A.
  • MAT A=DET Store the determinant of matrix A into element A (0, 0) of array A.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.