Casio fx-7400G PLUS Programming Manual de usuario Pagina 1

Busca en linea o descarga Manual de usuario para Calculadoras, organizadores Casio fx-7400G PLUS Programming. Casio fx-7400G PLUS Programming User Manual Manual de usuario

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 38
  • Tabla de contenidos
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 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
Vista de pagina 0
1 2 3 4 5 6 ... 37 38

Indice de contenidos

Pagina 1 - Programming

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

Pagina 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,

Pagina 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

Pagina 4

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

Pagina 5

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

Pagina 6

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

Pagina 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

Pagina 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 (

Pagina 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

Pagina 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

Pagina 11 - 7. Editing Program Contents

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

Pagina 12 - Chapter 8 Programming

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

Pagina 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

Pagina 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

Pagina 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

Pagina 16

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

Pagina 17

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

Pagina 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

Pagina 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

Pagina 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

Pagina 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

Pagina 22

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

Pagina 23

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

Pagina 24

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

Pagina 25

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

Pagina 26

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

Pagina 27

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

Pagina 28

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

Pagina 29

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

Pagina 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

Pagina 31

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

Pagina 32 - Programs

162Chapter 8 Programming

Pagina 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

Pagina 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

Pagina 35

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

Pagina 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

Pagina 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

Pagina 38

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

Modelos relacionados fx-7400G Programming

Comentarios a estos manuales

Sin comentarios