class ML: Representation
// MatLab Matrix
public class ML
{
private int h; // height of matrix
private int w; // width of matrix
private ml[][] values; // elements of matrix
// Constructors.
. . .
// Methods.
. . .
}
Previous slide
Next slide
Back to first slide
View graphic version