Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to convert string to number in gnuplot

Is there a way to convert strings representing numbers (in scientific format) to numbers in gnuplot. I.e.

stringnumber="1.0e0"
number=myconvert(stringnumber)

plot [-1:1] number

I search myconvert possibly using shell commands.

like image 808
highsciguy Avatar asked Mar 16 '12 14:03

highsciguy


1 Answers

You can add 0 to the string:

stringnumber="1.0e0"
number=stringnumber + 0
plot [-1:1] number
like image 146
perreal Avatar answered Oct 12 '22 13:10

perreal