#include
int write_mat_float_image(
float **img, /* 2-D image of size img[ht][wd] */
int ht, /* height of image */
int wd, /* width of image */
char *m
/** This is a simple class used to demonstrate various javadoc tags.
@author Jeremy Pfeifer
@version 1.0 */
public class DocBox
{
/** The height of the box. */
private int height;
/** Th
public class BasicBox
{
int length, width, height;
/** constructor */
public BasicBox(int l, int w, int h)
{
length = l;
width = w;
height = h;
}
public String toString()
{
Enter the height of the matrix: 3
Enter the width of the matrix: 3
The array is
Row 1: 0 10 20
Row 2: 1 11 21
Row 3: 2 12 22
Item (1,1) is 11
The special sum is 23
The different sum is 5