Ask Your Question

daniel-Ri-1011101's profile - activity

2020-01-09 01:10:08 +0200 received badge  Popular Question (source)
2017-09-13 17:03:34 +0200 asked a question Symbolic to numerical array

I would like to get a number-valued array from a symbolic-valued array, for example:

( sin(1), cos(1), pi/4) to ( sin(1).n() , cos(1).n() , pi/4.n() )

WITHOUT having to convert one component at a time, but directly transforming the array. When I write

( sin(1), cos(1), pi/4 ).n()

I get 'Error'. I would greatly appreciate any help :)