감동, 마음이 움직이는 것
[mathematica] list of symbolic variables and check the positive or negative in the list values 본문
Tips (Utility, Computer Language, and etc.)
[mathematica] list of symbolic variables and check the positive or negative in the list values
Struggler J. 2021. 6. 1. 21:191. making a list of symbolic variables
in[1]= var = x/@Range[4]
out[1]= {x[1], x[2], x[3], x[4]}
2. checking positive or negative values in the list
in[1]= vec = {1, 2, Sqrt[3], 4}
VectorQ[Re[vec], Negative]
VectorQ[Re[vec], Positive]
out[1]= {1,2,3+i,4}
out[2]= False
out[3]= True
'Tips (Utility, Computer Language, and etc.)' 카테고리의 다른 글
[python] formatting (0) | 2022.01.03 |
---|---|
[gnuplot] 데이터 포인트 값의 총합을 그림 그리지 않고 구하기 (0) | 2021.04.14 |
[gnuplot] fitting script ver2 (0) | 2021.04.14 |
[gnuplot] array (0) | 2021.04.14 |
[latex] table에 dashed line추가하기 (vertical and horizontal lines) (0) | 2020.07.16 |