1

When producing data,

data = Table[{n/100, (2 n)/100 + 1 + 0.1` RandomReal[{-1, 1}]}, {n, 0,
100}];

What does the ` mean here? Does it simply mean multiplication? Because if I delete it, the code seems to do the same work.

m_goldberg
  • 107,779
  • 16
  • 103
  • 257
Lazer
  • 77
  • 3

1 Answers1

1

It means 0.1 is a machine precision floating point number. What you show is equivalent to

.1 // FullForm
0.1`

Note: What you show is equivalent to

data = 
  Table[{n/100, (2 n)/100 + 1 + RandomReal[{-.1, .1}]}, {n, 0, 100}];
m_goldberg
  • 107,779
  • 16
  • 103
  • 257