- CASIO 9860
[fx-9860G] Index of the Casio BASIC Tutorials 사이트 소개
http://community.casiocalc.org/topic/2449-index-of-tutorials/page-1#entry31798
Index of the Casio BASIC Tutorials
INTRODUCTION
Creating a Program
Variable Basics
Debugging Basics
Basic Loops
Selection Statements
Advanced Loops
Logical Operators
Text Display
Input Basics
Key Input
Example Program 1
Advanced Loops
Advanced Variables
혹은
http://www.casio.edu.shriro.com.au/products/fx9860gau/pdf/basicProgramming.pdf
CONTENTS
SECTION 1
LESSON 1 – Starting a new program
LESSON 2 – Displaying text
LESSON 3 – Prompting for user input
LESSON 4 – Using input data
LESSON 5 – Introducing a Goto jump command
LESSON 6 – Renaming a program
LESSON 7 – Understanding the Int function
LESSON 8 – Enter an If statement
LESSON 9 – Entering Clrtext command and adjusting a Goto command
LESSON 10 – Adding other conditions in an If statement
LESSON 11 – Adding more text in an If statement
LESSON 12 – Understanding the Ran# function
LESSON 13 – Introducing a For statement
LESSON 14 – Storing data in a list
LESSON 15 – Sorting a list
LESSON 16 – Eliminate display command and enter text
세상의모든계산기 님의 최근 댓글
자게로 이동조치하였습니다. 그리고 이 글의 내용을 정리하여 HP 포럼에 올려두었습니다. https://allcalc.org/55774 [HP Prime] Solve 함수 사용법 2025 10.27 수치해석 방법 method 를 강제로 선택할 수 있으면 좋을텐데... 위의 스샷을 보면 되는 듯 하면서도 아래 스샷을 보면 안되는 것 같기도 합니다. solve(Expr,[Var]) csolve(LstEq,LstVar) nSolve(Expr,Var,[Guess or Interval],[Method]) deSolve(Eq,[TimeVar],FncVar) linsolve(LstLinEq,LstVar) fsolve(Expr,Var,[Guess or Interval],[Method]) 2025 10.17 종합해서 답변을 드리면 HP Prime 에 solve 에서 변수명에 구간을 입력하면 수치해석 방식으로 bisection 을 사용함. 이 bisection 방식은 해의 좌-우 부호가 서로 바뀌어야만 해를 인식하고 해의 좌-우 부호가 같으면 해를 인식하지 못합니다. 이 때문에 본문 sin 의 예나 아래 사진의 예에서는 해를 인식하지 못하는 것으로 보입니다. 2025 10.17 hp prime 이 solve 함수에서 해를 찾는데 어떤 방법(method)을 사용하는지 공식적인 무서로 정확하게 파악되진 않습니다. 2025 10.17 참고 x=guess 는 iterative 방식(일반적으로는 newton's method를 의미함)을 x=xmin .. xmax 는 bisection 방식을 사용하는 듯 합니다. // 구간지정 개념과는 차이가 있는 듯? 2025 10.17