It is currently Sat Feb 04, 2012 3:31 pm

All times are UTC + 2 hours [ DST ]




Post new topic Reply to topic  [ 4 posts ] 
Author Message
 Post subject: array newbie
PostPosted: Tue Nov 09, 2004 12:58 am 
Offline

Joined: Wed Oct 06, 2004 6:31 pm
Posts: 148
Location: Swansea
We're trying to create a wave height prediction model to predict swell size at a local beach the variables are as follows.
the following figures come from a wave buoy situated some 15 miles off the coast on an hourly basis
I need a little help with an array we have it in excel buy no idea how to write it in php
wave period in seconds
wave height ft

Period Factor
4.5 0
8 0.5
12.5 1


Example:
Given Period this predicts the factor (sec) = 8secs
Given Wave height (ft) = 13ft
Factor Prediction = 0.458549223
Wave height prediction = 5.961139896

Cheers

Lee


Top
 Profile  
 
 Post subject:
PostPosted: Tue Nov 09, 2004 1:02 am 
Offline

Joined: Wed Oct 06, 2004 6:31 pm
Posts: 148
Location: Swansea
Period Space Factor
4.5 Space 0
8 Space 0.5
12.5 Space 1


Top
 Profile  
 
 Post subject:
PostPosted: Tue Nov 09, 2004 1:02 am 
Offline

Joined: Sat Jul 17, 2004 12:01 am
Posts: 637
Location: California, US
You didn't really ask a question.

A two dimentional array works like this:

Code:
$a = array(array(1, 2), array(3, 4), array(5, 6));
echo $a[2][0]; //will output 5


or

Code:
$a[0][0] = 1;
$a[0][1] = 2;
$a[2][0] = 5;
//etc

_________________
DB_DataObject_FormBuilder - The database at your fingertips


Top
 Profile  
 
 Post subject:
PostPosted: Tue Nov 09, 2004 1:17 am 
Offline

Joined: Wed Oct 06, 2004 6:31 pm
Posts: 148
Location: Swansea
:?

can't get my head round that at all, gonna do some research on arrays i think..

Lee


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 4 posts ] 

All times are UTC + 2 hours [ DST ]


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  
cron