User Tools

Site Tools


opus:fall2012:mowens3:discretepart3

discrete Keyword 3

Matrix Multiplication

Definition

The multiplication of two or more matrices to produce a new matrix.

References

discrete Keyword 3 Phase 2

finite state machine.

Definition

  It is conceived as an abstract machine that can be in one of a finite number of states. 
  The machine is in only one state at a time; the state it is in at any given time is called the current state.
  It can change from one state to another when initiated by a triggering event or condition, this is called a transition. 

References

Demonstration

Draw some circles and connect the dots, upload them to this.

Demonstration of the indicated keyword.

If you wish to aid your definition with a code sample, you can do so by using a wiki code block, an example follows:

/*
 * Sample code block
 */
#include <stdio.h>
 
int main()
{
    return(0);
}

Alternatively (or additionally), if you want to demonstrate something on the command-line, you can do so as follows:

lab46:~$ cd src
lab46:~/src$ gcc -o hello hello.c
lab46:~/src$ ./hello
Hello, World!
lab46:~/src$ 
opus/fall2012/mowens3/discretepart3.txt · Last modified: 2012/11/30 13:45 by mowens3