- To: "William L. Hibbard" <WHIBBARD@xxxxxxxxxxxxx>
- Subject: Re: How to display single datapoints? (I'm a beginner!)
- From: Russ Rew <russ@xxxxxxxxxxxxxxxx>
- Date: Fri, 19 Jun 1998 08:09:29 -0600
Bill, Thanks for the illuminating example! I think instead of > // substitute source of values for 'Xi', 'Yj' > // and 'Zij' in these three lines > data[0][i + 5*j] = Xi; > data[0][i + 5*j] = Yi; > data[0][i + 5*j] = Zij; it really should be // substitute source of values for 'Xi', 'Yj' // and 'Zij' in these three lines data[0][i + 5*j] = Xi; data[1][i + 5*j] = Yi; data[2][i + 5*j] = Zij; --Russ
- References:
- Re: How to display single datapoints? (I'm a beginner!)
- From: William L. Hibbard
- Re: How to display single datapoints? (I'm a beginner!)