인터렉티브 모델 Manipulate 명령은 실시간으로 매개 변수를 변화시킬 때 일어나는 상황을 인터렉티브하게 확인할 수 있게해줍니다. In[1]:= ⨯ Manipulate[Plot[Sin[f x], {x, -3, 3}, Filling -> Axis], {f, 1, 5}] Out[1]= 하나의 Manipulate 명령은 여러 개의 컨트롤러를 포함할 수 있으며, Wolfram 언어는 여러 개의 컨트롤러 중 최적의 레이아웃을 자동으로 선택해 줍니다. In[1]:= ⨯ Manipulate[Plot[Sin[f*x + p], {x, -3, 3}, Filling -> fill, PlotStyle -> color], {f, 1, 5}, {p, 3, 9}, {fill, {Bottom, Top, Axis}}, {color, Red}] Out[1]= 그래픽이 아닌 식을 포함하여 Wolfram 언어의 어떠한 식도 Manipulate을 사용하여 조작이 가능합니다. In[1]:= ⨯ Manipulate[Expand[(a + b)^n], {n, 1, 20, 1}] Out[1]= 참고 사항: 동적 시각화 »