HP 38G
|
|
Bookmark HP 38G |
About HP 38GHere you can find all about HP 38G like manual and other informations. For example: calculator.
HP 38G manual (user guide) is ready to download for free.
On the bottom of page users can write a review. If you own a HP 38G please write about it to help other people. [ Report abuse or wrong photo | Share your HP 38G photo ]
Manual
Preview of first few manual pages (at low quality). Check before download. Click to enlarge.
Download
(English)HP 38G, size: 8.1 MB |
Related manuals HP 38G Graphing Calculator |
HP 38G
Video review
Emulador de las calculadoras HP: HP38G, HP3G9, HP48SX, HP48GX y HP49G ...
User reviews and opinions
| clarkvalentine |
9:32pm on Friday, April 16th, 2010 ![]() |
| I bought my Hewlett Packard Laserjet 5L printer 6 years ago and it still runs great. Qucik and easy use Frustration | |
| danieldussart |
8:43pm on Monday, April 12th, 2010 ![]() |
| You need to think of this as a desktop extension. This is a great item for the HP infrared calculators, where you need a written record. | |
Comments posted on www.ps2netdrivers.net are solely the views and opinions of the people posting them and do not necessarily reflect the views or opinions of us.
Documents

Creating HP 38G Aplets
This article explores a simple aplet and shows how to construct an aplet called PolySides.
by James A. Donnelly
In designing an aplet for the HP 38G calculator, its important to remember two guiding principles of the HP 38G design. First, the design recognizes that in a classroom setting there is (and should be) a large discrepancy between the amount of information entered into a graphing calculator and the amount of information produced by the calculator. We sought to minimize the calculator input required of the student and the teacher and maximize the returned information. Secondly, we sought to exclude irrelevant possibilities. By reducing irrelevant choices you focus the users attention on the subject of interest and avoid distractions from things that dont matter. Many choices made during the design of the HP 38G were based on this goal. Aplets contain information and have views. The information in an aplet consists of every major piece required to produce the views: the equations, setup information, mode information, sketch or text annotations, and attached libraries or programs. In this article well explore a simple aplet, then look at an aplet called PolySides and examine how it was constructed.
Using Built-in Aplets
When the HP 38G is first turned on, the built-in aplets are empty. Theres no equation, note, or sketch. When the user adds this information, these aplets come alive. You can save an aplet at any time, so its easy to start one project, change in midstream to another, then come back to the first. (Because the appearance of the screens depends on the information you enter, the screens on your calculator may look different from the example screens in this article.) A simple way to illustrate the aplet concept is to explore the equation SIN(X2)/X. Select the function aplet, press SYMB, and enter the equation. b
Now press PLOT to see the plot using the default plot parameters. b
Use the box option under ZOOM to look at a smaller area of the plot. b
Article 7
June 1996 Hewlett-Packard Journal
You can see the plot scale by pressing [shift]PLOT to see the plot setup view. b
At this point, you have an aplet thats completely dedicated to your interest in the function SIN(X2)/X, and the aplet can be saved under a unique name or transmitted to another HP 38G or a computer. When the aplet is restarted on the original or another HP 38G, all modes and scales are set just the way they were saved.
Exploring the PolySides Aplet
The PolySides aplet is designed to explore how a regular polygon can approximate a circle as the number of sides increases. PolySides can be loaded from a disk or another HP 38G in a single operation from the LIB catalog. Once loaded, PolySides appears in the aplet library. b
We are now just a single keystroke away from exploring the aplet. To begin the exploration, press START. The motivation for the lesson is displayed first. b
After the introduction has been read and a key pressed, the next step is to enter the radius of the circle to be approximated. b
After the radius has been entered, the properties of the circle are displayed. b
After the circle properties have been viewed, the note view of the aplet is displayed. The PAGE menu key switches between the pages of the note. b
To see a sketch of the problem, press SKETCH. b
So far we have seen a pretty complete summary of the lesson with less than a dozen keystrokes. Now we can begin to explore how may sides are needed to approximate a circle. Our central point of departure for PolySides is VIEWS (as mentioned in the note view). b
These choices let you determine what aspect of a polygon approximation to a circle youd like to explore. To explore how the perimeter of the polygon approximates the circle, move the highlight down to Perimeter and press OK. The plot-table view is presented automatically. b
This is one of the HP 38Gs split views, showing the plot and numeric views of the perimeter approximation at the same time. The variable X represents the number of sides, and the equation stored in F2 returns the perimeter as a function of X. Pressing the left or right arrow key moves the cursors for the plot and numeric views simultaneously. When the cursor is at the left edge of the plot, the table on the right shows the rapid change of the perimeter from a triangle to a nonagon. b
To see the equation, just press SYMB. b
The symbolic view is where aplet equations are stored. The check mark beside F2 indicates that when a plot or numeric view is displayed, F2 will be used. Another view of the equation is available by pressing SHOW. b
Notice that after the introduction there is no fixed order of events. You can change to any of the views at any time or press HOME at any time to do a short calculation. Part of the design philosophy of aplets is to let the student explore the lesson at will, without following any particular algorithm. Once youve explored the approximations to the perimeter and area, and perhaps explored the effect on side lengths, you may decide that a polygon with 57 sides yields a fair approximation to the circumference of a unit circle. b
Now you can look at a summary of a 57-sided polygon by selecting Polygon Props (for polygon properties) from the VIEWS choices. b
Press OK to select this choice. Since the cursor was last on X = 57, the number of sides defaults to 57. b
After the user accepts (or alters) the number of sides, the polygon data is displayed. b
Now weve observed that a 57-sided polygon does a fair job of approximating a unit circle. More explorations are possible. For instance, if the circle has a very large radius, how many more sides are required for a polygon to closely approximate the circles area? After the last polygon property screen has been acknowledged with a keystroke, the VIEWS menu is displayed. b
This lets you start with another circle or go back to find a different approximation. Notice that the keystrokes involved for the entire exploration have been oriented to the views. We havent entered a single bit of setup or scaling information beyond the radius of the circle being approximated. This is the goal of a well-formed aplet; more attention is directed to the lesson and less attention is directed to the mechanics of the calculator. You can imagine a teacher distributing this aplet in a classroom for part of a days lesson. If youre familiar with the HP 48G/GX calculators, youll notice that variables like EQ and PPAR have never been mentioned, even though we changed the equation and plot scaling parameters several times. Furthermore, we never went near an input form to set the scale manually (although we could have done so by pressing [shift] PLOT to display the plot setup view).
Building the PolySides Aplet
PolySides was constructed using the function aplet and five user programs attached with the SETVIEWS command. Beginning with a reset function aplet, the equations, note, and sketch were entered directly on the calculator. The equations are: Side Length F1(X)=2*R*SIN(180/X) Perimeter F2(X)=X*2*R*SIN(180/X) Area F3(X)=.5*X*R2*SIN(360/X) Then five programs were entered, one for each entry in VIEWS. After the programs were entered, they were attached to the aplet with the SETVIEWS command. For convenience during aplet development, a separate program, SetPolyViews, was entered that contains the SETVIEWS command. SETVIEWS allows you to customize the VIEWS key with your own entries and selected entries from the default VIEWS choices. SETVIEWS takes triplets of arguments. Each triplet contains the prompt that will appear in the VIEWS list, a program name, and a number corresponding to the view that should be displayed after the program is executed. The SETVIEWS command for PolySides looks like this: SETVIEWS Start;.Poly1;8; Side Lengths;.Poly2;16; Perimeter;.Poly3;16; Area;.Poly4;16; Polygon Props;.Poly5;7; When Side Lengths is selected, the program.Poly2 is executed, then view number 16 is displayed. View number 7 is the VIEWS list, view number 8 is the notes view, and view number 16 is the split plot-table view. A SETVIEWS convention is that if a prompt is named Start or Reset, it is associated with the START or RESET menu key in the LIB catalog. The PolySides aplet takes advantage of this feature so that pressing START in the LIB catalog gets a student underway in a single keystroke.
The programs are listed below. (Note that the translation codes used are the same as translate code 3 on the HP 48G/GX.)
.Poly1 (Start)
ERASE: Clear the display DISP 1;Explore how a regular: Display the DISP 2;polygon begins to: motivation for DISP 3;approximate a circle: the aplet DISP 4;as the number of sides: DISP 5;increases.: DISP 7;Press any key.: FREEZE: IF R\<=0 THEN 1\|>R END: INPUT R;SET CIRCLE RADIUS; Prompt for the RADIUS:; circle radius FIRST ENTER THE CIRCLE RADIUS;R: ERASE: Clear the display 2\|>Digits: Fixed\|>Format: Set FIX 2 display mode DISP 1; Circle Properties: Display the screen title DISP 3;Radius = R: Display each property DISP 4;Circumference = 2*\pi*R: DISP 5;Area = \pi*R^2: DISP 7;Press any key.: FREEZE: Wait for a key press Standard\|>Format:ERASE Restore standard display format, clear the display Programs.Poly2 through.Poly4 do similar jobs. Each validates the value for R (the radius), selects the appropriate equations in the symbolic view, calculates the plot scale parameters, and sets the initial values for the numeric view. Note that the plot scale is calculated to fit above the menu. The menu occupies 1/8 the display, so an adjustment of 1/8 the calculated vertical range is made to the vertical scale.
.Poly2 (Side Lengths)
IF R\<=0 THEN 1\|>R END: CHECK 1: UNCHECK 2: UNCHECK 3: 3\|>Xmin: 67\|>Xmax: F1(Xmax)\|>Ymin: F1(Xmin)\|>Ymax: Ymin.125*(YmaxYmin)\|>Ymin: 3\|>NumStart: 1\|>NumStep:
.Poly3 (Perimeter)
Ensure a reasonable value for R Select equation F1
Set the plot scale
Fit the plot above the menu Set the numeric view to begin at 1 and increase in steps of 1
IF R\<=0 THEN 1\|>R END: UNCHECK 1: CHECK 2: UNCHECK 3: 3\|>Xmin: 67\|>Xmax: F2(Xmin)\|>Ymin: F2(Xmax)\|>Ymax: Ymin.125*(YmaxYmin)\|>Ymin: 3\|>NumStart: 1\|>NumStep:
Select equation F2
.Poly4 (Area)
IF R\<=0 THEN 1\|>R END: UNCHECK 1: UNCHECK 2: CHECK 3: 3\|>Xmin: 67\|>Xmax: F3(Xmin)\|>Ymin: F3(Xmax)\|>Ymax: Ymin.125*(YmaxYmin)\|>Ymin: 3\|>NumStart: 1\|>NumStep:
.Poly5 (Polygon Properties)
Select equation F3
INPUT X;NUMBER OF SIDES;SIDES;ENTER NUMBER OF SIDES;X: Sides prompt ERASE: Clear the display Standard\|>Format: Set standard format DISP 1; X Sided Polygon: Display the screen title 2\|>Digits: Fixed\|>Format: Set FIX 2 format DISP 3;Approximating circle: Display circle radius DISP 4;of radius R: and polygon DISP 5;Side length= F1(X): side length DISP 7;Press any key.: FREEZE: Wait for a key press ERASE: Clear the display Set standard format Standard\|>Format: DISP 1; X Sided Polygon: Display the screen title Fixed\|>Format: Set FIX 2 format DISP 3;Polygon perimeter=: Display the DISP 4; F2(X): perimeter and DISP 5;Circle circumference=: circumference DISP 6; s*\pi*R: DISP 7;Press any key.: FREEZE: Wait for a key press ERASE: Clear the display Standard\|>Format: Set standard format DISP 1; X Sided Polygon: Display the screen title Fixed\|>Format: Set FIX 2 format DISP 3;Polygon area=: Display the area DISP 4; F3(X): DISP 5;Circle area=: DISP 6; \pi*R^2: DISP 7;Press any key.: FREEZE: Wait for a key press Standard\|>Format: ERASE Restore standard display format, clear the display
Building Your Own Aplets
Your own aplets can be as simple as the first example, somewhat more involved (like the PolySides aplet), or very involved, with more complex user programs. Creating a new base aplet that can be downloaded into the HP 38G requires the use of System RPL programming beyond the built-in user programming language. Basic Steps. The basic steps for building an aplet are: Pick an appropriate built-in base apletfunction, polar, parametric, etc. In each of the views, enter the information that applies. For instance, you would put your equations in the symbolic view, plot parameters in the plot setup view, and so on. Put a sketch of the problem in the sketch view and a description of the problem in the note view. For a fancier aplet, use SETVIEWS to attach user programs to the VIEWS key. Remember that it may be handy to have a separate program that stores the SETVIEWS command while youre developing the aplet.
Flow of Control. In general, the user of the aplet should determine the flow of control, so that a problem can be explored freely. The PolySides aplet provides a little extra guidance by using the program.Poly1 attached to the start prompt in VIEWS.Poly1 displays an initial screen, prompts for the circle radius, displays the circles properties, and finally exits to the note view as directed by the SETVIEWS command. In general, the user should be able to navigate freely among the choices in VIEWS or the various views, or go home and come back. Shared Variables. The global variables A to Z, Z1 to Z0, and so on are not stored within an aplet, so if an aplet depends on the value of a global variable its a good idea to have the program associated with Start in VIEWS set these values.
" " "
Go To Next Article Go Table of Contents Go To HP Journal Home Page
Tags
KM021 Calculator RX-8030VBK-rx-8030 DVD-2500btci 02R96V2 P4018WT P3600 RT-20LZ50 Contax G2 Continental 2000 KDC-MP205 JBL 6260 M340 T NEC VT45 X-950 Series DVD-1080PR NAD C542 EB 260 P2075 LH-D6230 Futura 4010 CS-XE12EKE Frontman 15R PM335 WD14700RD MRO-DF6 Car KIT EOR211 Copia 9020 X-240 Casio 4732 T 1855 UX-5500R MD-MT290H Waffle Iron CE107B-B Qtek Tytn F40860M I7110 PXA-H701 AQ18FCN LQ-680PRO PEG-N760C Enterprise 743BX CJ-765W 350 USB DFL-2500 PM-900 220-240v L194WT TX-28SK1F Dreamweaver KDC-BT8044U DEH-1150MP VSX-D511-K Office-stapler Zapbox Easy AN-TNT Makita 9911 MFC-7300C Zoom 506 Panasonic G51M DVD-V3500 Serie Rainguard Explorer E-115 Casio 2747 Pearl 8200 SR6003 Interface ZC6685X Y26 50-2003 CDX-3160 KLV-21SR2 DCR-SR70E 1800-400 32PFL5404H Kx-tg6074 Alcohawk Slim ROC 330 SE1401B 53 DPL950 Evolve KR-5000 Rancher Pyramid CR66 MY X-1 PC1616 Urei 1603 Dslr-A450 Crossfire Desktop PC Onis 6511 Anniversary HVR-M25AE TK-3201 14 4 KX-TS208W
manuel d'instructions, Guide de l'utilisateur | Manual de instrucciones, Instrucciones de uso | Bedienungsanleitung, Bedienungsanleitung | Manual de Instruções, guia do usuário | инструкция | návod na použitie, Užívateľská príručka, návod k použití | bruksanvisningen | instrukcja, podręcznik użytkownika | kullanım kılavuzu, Kullanım | kézikönyv, használati útmutató | manuale di istruzioni, istruzioni d'uso | handleiding, gebruikershandleiding
Sitemap
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101








1. A Touch of Elegance: Harpworks of Marcel Grandjany
2. Grizzly G0691 10" 3HP 220V Cabinet Table Saw with Long Rails & Riving Knife
3. Dansko Women's Phoebe Box Leather Clog
4. Curved Eyebrow Barbell Star: 16g 5/16" High Polish
5. Ncquay Norris U Joint U153 HP
6. Original HP 38 Light Cyan Pigment Ink Cartridge in Retail Packaging


