Canvas Widgets
Canvas Widgets https://labellota02.tistory.com/entry/Canvas-Widgets
Maxima uses ':' to assign values to a variable ('a : 3;'), not '=' as most programming languages do.
This allows, that a mathematical equation can be assigned to a variable, e.g.
Maxima는 대부분의 프로그래밍 언어처럼 '='가 아닌 ':'를 사용하여 변수('a : 3;')에 값을 할당합니다.
이를 통해 수학 방정식을 변수에 할당할 수 있습니다.
eq1:3*x=4;
which may then be solved for x with
예를 들어, x에 대해
solve(eq1,x);
댓글
댓글 쓰기