Mat331 class worksheets, spring 2008

Below are listed the worksheets that were saved from each class meeting, which you can browse online or download.

Alternatively, you can open the worksheets from inside Maple by selecting Open URL... from the File menu, and entering a URL like , where you replace DATE with the date of the class you want.

read())) { if($entry[0] == ".") continue; // skip hidden files $pieces = explode(".", $entry, 2); if(is_dir("$dir$entry")) { $retval[] = array( "fullname" => "$dir$entry/", "name" => "$entry", "size" => 0, "base" => "$entry", "suffix" => "/", "lastmod" => filemtime("$dir$entry") ); } elseif(is_readable("$dir$entry")) { $retval[] = array( "fullname" => "$dir$entry", "name" => "$entry", "size" => filesize("$dir$entry"), "base" => $pieces[0], "suffix" => $pieces[1], "lastmod" => filemtime("$dir$entry") ); } } $d->close(); return $retval; } function compare_byname($a, $b) { return strnatcmp($a['name'], $b['name']); } $dirlist = getFileList("."); usort($dirlist, 'compare_byname'); echo '
'."\n"; foreach($dirlist as $file) { if ($file['suffix'] != "mw") continue; // only want the worksheets echo "\n"; echo '\n"; echo '\n"; echo "\n"; // echo '\n"; // echo "\n"; echo "\n"; } echo "
'; echo "{$file['base']}'; if (is_readable($file['base'] . ".html")) { echo 'browse (html)'; } else { echo ' '; } echo " download""; echo ''; echo '
'; echo '\n"; echo ''; echo "(worksheet, "; echo round($file['size']/1024) ."K bytes)"; echo "
"; echo "
as of " . date("r", $file['lastmod']). "
\n\n"; ?>

Return to class main page