Assign(string, name, value (number or list), …)
return string in which values are assigned to names
変数名(文字列)に値を割り当てた文字列を返す
Ex) A=0.4; B=[2,1];
Fn=Assign(’A*xˆ2+B(1)*yˆ2’,’A’, A, ’B’, B);
Assign(name, value or string (number or list), … )
set to the current list for assignment
Ex) Assign(’A’, 0.4, ’B’, [2,1]);
Assign(string)
return a string assigned by the current list
Ex) Assign(’A’, 0.4, ’B’, [2,1]);
Fn=Assign(’A*xˆ2+B(1)*yˆ2’);
Assign()
execute the current list for assignment
Ex) Assign(’A’, 0.4, ’B’, [2,1]);
Assign();
最終更新:2013年12月03日 20:22