Casio fx-7400G PLUS Programming Instrukcja Użytkownika

Przeglądaj online lub pobierz Instrukcja Użytkownika dla Kalkulatory, organizery Casio fx-7400G PLUS Programming. Casio fx-7400G PLUS Programming User Manual Instrukcja obsługi

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj
  • Strona
    / 38
  • Spis treści
  • BOOKMARKI
  • Oceniono. / 5. Na podstawie oceny klientów
Przeglądanie stron 0
Programming
1. Before Programming
2. Programming Examples
3. Debugging a Program
4. Calculating the Number of Bytes Used by a Program
5. Secret Function
6. Searching for a File
7. Editing Program Contents
8. Deleting a Program
9. Useful Program Commands
10. Command Reference
11. Text Display
12. Using Calculator Functions in Programs
Chapter
8
Przeglądanie stron 0
1 2 3 4 5 6 ... 37 38

Podsumowanie treści

Strona 1 - Programming

Programming1. Before Programming2. Programming Examples3. Debugging a Program4. Calculating the Number of Bytes Used by a Program5. Secret Function6.

Strona 2 - 1. Before Programming

134Chapter 8 ProgramminguuuuuTo recall a program ExampleTo recall the file named AREA which is protected by thepassword CASIO1. In the program list,

Strona 3 - 2. Programming Examples

135Programming Chapter 8uuuuuTo find a file using file name search Example To use file name search to recall the program named OCTA1. While the progr

Strona 4

136Chapter 8 Programming2. Recall the program.• The procedures you use for editing program contents are identical to those usedfor editing manual calc

Strona 5

137Programming Chapter 8As you can see, you can produce the TETRA program by making the following changesin the OCTA program.•Deleting c * (underlined

Strona 6

138Chapter 8 Programmingwwbaww8. Deleting a ProgramThere are two different ways to delete a file name and its program.•Specific program delete•All pro

Strona 7

139Programming Chapter 8[2(DEL•A)2. Press 1 (YES) to delete all the programs in the list or 4 (NO) to abort theoperation without deleting anything.•Yo

Strona 8 - 3. Debugging a Program

140Chapter 8 ProgrammingProgram Command Menu (COM)While the program menu is on the display, press 1 (COM) to display the programcommand menu.1(COM)1 (

Strona 9 - 5. Secret Function

141Programming Chapter 8Jump Command Menu (JUMP)While the program menu is on the display, press 3 (JUMP) to display the jumpcommand menu.3(JUMP)1 (Lbl

Strona 10 - 6. Searching for a File

142Chapter 8 Programming3(TABL)1 (Tabl) ... DispTable command2 (G•Con) ... DrawTG-Con command3 (G•Plt)... DrawTG-Plt commandConditional Jump

Strona 11 - 7. Editing Program Contents

143Programming Chapter 810. Command Referencekkkkk Command IndexBreak ...

Strona 12 - Chapter 8 Programming

126Chapter 8 Programming1. Before ProgrammingThe programming function helps to make complex, often-repeated calculations quickand easy. Commands and c

Strona 13 - Programming Chapter 8

144Chapter 8 Programming[Square Brackets] ... Square brackets are used to enclose items that are op-tional. Do not input the square brackets when

Strona 14 - 8. Deleting a Program

145Programming Chapter 8Description:1. Operation of the carriage return is identical to that of the multi-statement com-mand.2. Using a carriage retur

Strona 15 - 9. Useful Program Commands

146Chapter 8 ProgrammingIf~Then~ElseFunction: The Then-statement is executed only when the If-condition is true (non-zero). The Else-statement is exec

Strona 16

147Programming Chapter 8For~To~NextFunction: This command repeats everything between the For-statement and theNext-statement. The starting value is as

Strona 17

148Chapter 8 Programming_Do: ~ LpWhile <expression>^_While <expression>: ~WhileEnd^Description:1. This command is basically identical to F

Strona 18

149Programming Chapter 8Description:1. This command repeats the commands contained in the loop as long as its condi-tion is true (non-zero). When the

Strona 19 - 10. Command Reference

150Chapter 8 Programming3. A subroutine can be used in multiple locations in the same main routine, or it canbe called up by any number of main routin

Strona 20

151Programming Chapter 8Example: For 2 → I To 10_If I = 5_Then ”STOP” : Stop_IfEnd_NextThis program counts from 2 to 10. When the count reaches 5, how

Strona 21

152Chapter 8 Programming3. This command can be used in combination with conditional jumps and countjumps.4. If there is no Lbl-statement whose value m

Strona 22

153Programming Chapter 8Description:1. The conditional jump compares the contents of two variables or the results of twoexpressions, and a decision is

Strona 23

127Programming Chapter 8A12342. Programming Examples Example 1To calculate the surface area and volume of three regularoctahedrons of the dimensions s

Strona 24

154Chapter 8 ProgrammingDescription:This command draws a statistical graph in accordance with conditions defined withinthe program.DrawGraphFunction:

Strona 25

155Programming Chapter 8Send (Function: This command sends data to an external device.Syntax: Send (<data>) (…ex. Send (List 1))Description:1. T

Strona 26

156Chapter 8 Programming11. Text DisplayYou can include text in a program by simply enclosing it between double quotationmarks. Such text appears on t

Strona 27

157Programming Chapter 8Executing this program produces the result shown here.kkkkk Using Table & Graph Functions in a ProgramTable & Graph fu

Strona 28

158Chapter 8 ProgrammingExecuting this program produces the results shown here.Numeric TableGraphwkkkkk Using List Sort Functions in a ProgramThese fu

Strona 29

159Programming Chapter 8The graph conditions that are required depends on the graph type. See “ChangingGraph Parameters”.• The following is a typical

Strona 30

160Chapter 8 ProgrammingExample ProgramClrGraph_1!Z[[[1Q1S-WindAuto_2K11{1, 2, 3} → 2 List 1_31Q{1, 2, 3} → 3 List 2_43121Q4S-Gph1 5 DrawOn,53111Q6S

Strona 31

161Programming Chapter 8• Regression statistical calculation1LinearReg List 1, List 2, List 3CalculationFrequency data (Frequency)type*y-axis data (YL

Strona 32 - Programs

162Chapter 8 Programming

Strona 33

128Chapter 8 Programming•Pressing 4 (SYBL) displays a menu of symbols that can be input.4(SYBL)•You can delete a character while inputting a file name

Strona 34

129Programming Chapter 8uuuuuTo change modes in a program•Pressing 3 (MENU) while the program input screen is on the display causes amode change menu

Strona 35

130Chapter 8 ProgrammingSurface Area S ... c*!9d*aAxwVolume V ... !9c/d*aAMdwIf you simply input the manual calculations shown above however,

Strona 36

131Programming Chapter 81 (EXE) or whw(Value of A)Intermediate result produced by ^wwbaww•Pressing w while the program’s final result is on the displa

Strona 37

132Chapter 8 Programming3. Debugging a ProgramA problem in a program that keeps the program from running correctly is called a“bug,” and the process o

Strona 38

133Programming Chapter 85. Secret FunctionWhen inputting a program, you can protect it with a password that limits access tothe program contents to th

Powiązane modele: fx-7400G Programming

Komentarze do niniejszej Instrukcji

Brak uwag