Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311

312

313

314

315

316

317

318

319

320

321

322

323

324

325

326

327

328

329

330

331

332

333

334

335

336

337

338

339

340

341

342

343

344

345

346

347

348

349

350

351

352

353

354

355

356

357

358

359

360

361

362

363

364

365

366

367

368

369

370

371

372

373

374

375

376

377

378

379

380

381

382

383

384

385

386

387

"Plotting utilities" 

 

#***************************************************************************** 

# Distributed under the terms of the GNU General Public License (GPL) 

# 

# This code is distributed in the hope that it will be useful, 

# but WITHOUT ANY WARRANTY; without even the implied warranty of 

# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 

# General Public License for more details. 

# 

# The full text of the GPL is available at: 

# 

# http://www.gnu.org/licenses/ 

#***************************************************************************** 

 

from functools import wraps 

 

from sage.ext.fast_eval import fast_float, fast_float_constant, is_fast_float 

 

from sage.structure.element import is_Vector 

 

def setup_for_eval_on_grid(funcs, ranges, plot_points=None, return_vars=False): 

""" 

Calculate the necessary parameters to construct a list of points, 

and make the functions fast_callable. 

 

INPUT: 

 

- ``funcs`` -- a function, or a list, tuple, or vector of functions 

 

- ``ranges`` -- a list of ranges. A range can be a 2-tuple of 

numbers specifying the minimum and maximum, or a 3-tuple giving 

the variable explicitly. 

 

- ``plot_points`` -- a tuple of integers specifying the number of 

plot points for each range. If a single number is specified, it 

will be the value for all ranges. This defaults to 2. 

 

- ``return_vars`` -- (default ``False``) If ``True``, return the variables, 

in order. 

 

 

OUTPUT: 

 

 

- ``fast_funcs`` - if only one function passed, then a fast 

callable function. If funcs is a list or tuple, then a tuple 

of fast callable functions is returned. 

 

- ``range_specs`` - a list of range_specs: for each range, a 

tuple is returned of the form (range_min, range_max, 

range_step) such that ``srange(range_min, range_max, 

range_step, include_endpoint=True)`` gives the correct points 

for evaluation. 

 

EXAMPLES:: 

 

sage: x,y,z=var('x,y,z') 

sage: f(x,y)=x+y-z 

sage: g(x,y)=x+y 

sage: h(y)=-y 

sage: sage.plot.misc.setup_for_eval_on_grid(f, [(0, 2),(1,3),(-4,1)], plot_points=5) 

(<sage.ext...>, [(0.0, 2.0, 0.5), (1.0, 3.0, 0.5), (-4.0, 1.0, 1.25)]) 

sage: sage.plot.misc.setup_for_eval_on_grid([g,h], [(0, 2),(-1,1)], plot_points=5) 

((<sage.ext...>, <sage.ext...>), [(0.0, 2.0, 0.5), (-1.0, 1.0, 0.5)]) 

sage: sage.plot.misc.setup_for_eval_on_grid([sin,cos], [(-1,1)], plot_points=9) 

((<sage.ext...>, <sage.ext...>), [(-1.0, 1.0, 0.25)]) 

sage: sage.plot.misc.setup_for_eval_on_grid([lambda x: x^2,cos], [(-1,1)], plot_points=9) 

((<function <lambda> ...>, <sage.ext...>), [(-1.0, 1.0, 0.25)]) 

sage: sage.plot.misc.setup_for_eval_on_grid([x+y], [(x,-1,1),(y,-2,2)]) 

((<sage.ext...>,), [(-1.0, 1.0, 2.0), (-2.0, 2.0, 4.0)]) 

sage: sage.plot.misc.setup_for_eval_on_grid(x+y, [(x,-1,1),(y,-1,1)], plot_points=[4,9]) 

(<sage.ext...>, [(-1.0, 1.0, 0.6666666666666666), (-1.0, 1.0, 0.25)]) 

sage: sage.plot.misc.setup_for_eval_on_grid(x+y, [(x,-1,1),(y,-1,1)], plot_points=[4,9,10]) 

Traceback (most recent call last): 

... 

ValueError: plot_points must be either an integer or a list of integers, one for each range 

sage: sage.plot.misc.setup_for_eval_on_grid(x+y, [(1,-1),(y,-1,1)], plot_points=[4,9,10]) 

Traceback (most recent call last): 

... 

ValueError: Some variable ranges specify variables while others do not 

sage: sage.plot.misc.setup_for_eval_on_grid(x+y, [(1,-1),(-1,1)], plot_points=5) 

doctest:...: DeprecationWarning: 

Unnamed ranges for more than one variable is deprecated and 

will be removed from a future release of Sage; you can used 

named ranges instead, like (x,0,2) 

See http://trac.sagemath.org/7008 for details. 

(<sage.ext...>, [(1.0, -1.0, 0.5), (-1.0, 1.0, 0.5)]) 

sage: sage.plot.misc.setup_for_eval_on_grid(x+y, [(y,1,-1),(x,-1,1)], plot_points=5) 

(<sage.ext...>, [(1.0, -1.0, 0.5), (-1.0, 1.0, 0.5)]) 

sage: sage.plot.misc.setup_for_eval_on_grid(x+y, [(x,1,-1),(x,-1,1)], plot_points=5) 

Traceback (most recent call last): 

... 

ValueError: range variables should be distinct, but there are duplicates 

sage: sage.plot.misc.setup_for_eval_on_grid(x+y, [(x,1,1),(y,-1,1)]) 

Traceback (most recent call last): 

... 

ValueError: plot start point and end point must be different 

sage: sage.plot.misc.setup_for_eval_on_grid(x+y, [(x,1,-1),(y,-1,1)], return_vars=True) 

(<sage.ext...>, [(1.0, -1.0, 2.0), (-1.0, 1.0, 2.0)], [x, y]) 

sage: sage.plot.misc.setup_for_eval_on_grid(x+y, [(y,1,-1),(x,-1,1)], return_vars=True) 

(<sage.ext...>, [(1.0, -1.0, 2.0), (-1.0, 1.0, 2.0)], [y, x]) 

""" 

if max(map(len, ranges)) != min(map(len, ranges)): 

raise ValueError("Some variable ranges specify variables while others do not") 

 

if len(ranges[0])==3: 

vars = [r[0] for r in ranges] 

ranges = [r[1:] for r in ranges] 

if len(set(vars))<len(vars): 

raise ValueError("range variables should be distinct, but there are duplicates") 

else: 

vars, free_vars = unify_arguments(funcs) 

if len(free_vars)>1: 

from sage.misc.superseded import deprecation 

deprecation(7008, "Unnamed ranges for more than one variable is deprecated and will be removed from a future release of Sage; you can used named ranges instead, like (x,0,2)") 

 

# pad the variables if we don't have enough 

nargs = len(ranges) 

if len(vars)<nargs: 

vars += ('_',)*(nargs-len(vars)) 

 

ranges = [[float(z) for z in r] for r in ranges] 

 

if plot_points is None: 

plot_points=2 

 

if not isinstance(plot_points, (list, tuple)): 

plot_points = [plot_points]*len(ranges) 

elif len(plot_points)!=nargs: 

raise ValueError("plot_points must be either an integer or a list of integers, one for each range") 

 

plot_points = [int(p) if p>=2 else 2 for p in plot_points] 

range_steps = [abs(range[1] - range[0])/(p-1) for range, p in zip(ranges, plot_points)] 

if min(range_steps) == float(0): 

raise ValueError("plot start point and end point must be different") 

 

options={} 

if nargs==1: 

options['expect_one_var']=True 

 

if is_Vector(funcs): 

funcs = list(funcs) 

 

#TODO: raise an error if there is a function/method in funcs that takes more values than we have ranges 

 

if return_vars: 

return fast_float(funcs, *vars,**options), [tuple(range+[range_step]) for range,range_step in zip(ranges, range_steps)], vars 

else: 

return fast_float(funcs, *vars,**options), [tuple(range+[range_step]) for range,range_step in zip(ranges, range_steps)] 

 

 

def unify_arguments(funcs): 

""" 

Return a tuple of variables of the functions, as well as the 

number of "free" variables (i.e., variables that defined in a 

callable function). 

 

INPUT: 

 

- ``funcs`` -- a list of functions; these can be symbolic 

expressions, polynomials, etc 

 

OUTPUT: functions, expected arguments 

 

- A tuple of variables in the functions 

 

- A tuple of variables that were "free" in the functions 

 

EXAMPLES:: 

 

sage: x,y,z=var('x,y,z') 

sage: f(x,y)=x+y-z 

sage: g(x,y)=x+y 

sage: h(y)=-y 

sage: sage.plot.misc.unify_arguments((f,g,h)) 

((x, y, z), (z,)) 

sage: sage.plot.misc.unify_arguments((g,h)) 

((x, y), ()) 

sage: sage.plot.misc.unify_arguments((f,z)) 

((x, y, z), (z,)) 

sage: sage.plot.misc.unify_arguments((h,z)) 

((y, z), (z,)) 

sage: sage.plot.misc.unify_arguments((x+y,x-y)) 

((x, y), (x, y)) 

""" 

from sage.symbolic.callable import is_CallableSymbolicExpression 

 

vars=set() 

free_variables=set() 

if not isinstance(funcs, (list, tuple)): 

funcs=[funcs] 

 

for f in funcs: 

if is_CallableSymbolicExpression(f): 

f_args=set(f.arguments()) 

vars.update(f_args) 

else: 

f_args=set() 

 

try: 

free_vars = set(f.variables()).difference(f_args) 

vars.update(free_vars) 

free_variables.update(free_vars) 

except AttributeError: 

# we probably have a constant 

pass 

return tuple(sorted(vars, key=lambda x: str(x))), tuple(sorted(free_variables, key=lambda x: str(x))) 

 

#For backward compatibility -- see #9907. 

from sage.misc.decorators import options, suboptions, rename_keyword 

 

def _multiple_of_constant(n,pos,const): 

""" 

Function for internal use in formatting ticks on axes with 

nice-looking multiples of various symbolic constants, such 

as `\pi` or `e`. Should only be used via keyword argument 

`tick_formatter` in :meth:`plot.show`. See documentation 

for the matplotlib.ticker module for more details. 

 

EXAMPLES: 

 

Here is the intended use:: 

 

sage: plot(sin(x), (x,0,2*pi), ticks=pi/3, tick_formatter=pi) 

Graphics object consisting of 1 graphics primitive 

 

Here is an unintended use, which yields unexpected (and probably 

undesired) results:: 

 

sage: plot(x^2, (x, -2, 2), tick_formatter=pi) 

Graphics object consisting of 1 graphics primitive 

 

We can also use more unusual constant choices:: 

 

sage: plot(ln(x), (x,0,10), ticks=e, tick_formatter=e) 

Graphics object consisting of 1 graphics primitive 

sage: plot(x^2, (x,0,10), ticks=[sqrt(2),8], tick_formatter=sqrt(2)) 

Graphics object consisting of 1 graphics primitive 

""" 

from sage.misc.latex import latex 

from sage.rings.continued_fraction import continued_fraction 

from sage.rings.infinity import Infinity 

cf = continued_fraction(n/const) 

k = 1 

while cf.quotient(k) != Infinity and cf.denominator(k) < 12: 

k += 1 

return '$%s$'%latex(cf.convergent(k-1)*const) 

 

 

def get_matplotlib_linestyle(linestyle, return_type): 

""" 

Function which translates between matplotlib linestyle in short notation 

(i.e. '-', '--', ':', '-.') and long notation (i.e. 'solid', 'dashed', 

'dotted', 'dashdot' ). 

 

If linestyle is none of these allowed options, the function raises 

a ValueError. 

 

INPUT: 

 

- ``linestyle`` - The style of the line, which is one of 

- ``"-"`` or ``"solid"`` 

- ``"--"`` or ``"dashed"`` 

- ``"-."`` or ``"dash dot"`` 

- ``":"`` or ``"dotted"`` 

- ``"None"`` or ``" "`` or ``""`` (nothing) 

 

The linestyle can also be prefixed with a drawing style (e.g., ``"steps--"``) 

 

- ``"default"`` (connect the points with straight lines) 

- ``"steps"`` or ``"steps-pre"`` (step function; horizontal 

line is to the left of point) 

- ``"steps-mid"`` (step function; points are in the middle of 

horizontal lines) 

- ``"steps-post"`` (step function; horizontal line is to the 

right of point) 

 

If ``linestyle`` is ``None`` (of type NoneType), then we return it 

back unmodified. 

 

- ``return_type`` - The type of linestyle that should be output. This 

argument takes only two values - ``"long"`` or ``"short"``. 

 

EXAMPLES: 

 

Here is an example how to call this function:: 

 

sage: from sage.plot.misc import get_matplotlib_linestyle 

sage: get_matplotlib_linestyle(':', return_type='short') 

':' 

 

sage: get_matplotlib_linestyle(':', return_type='long') 

'dotted' 

 

TESTS: 

 

Make sure that if the input is already in the desired format, then it 

is unchanged:: 

 

sage: get_matplotlib_linestyle(':', 'short') 

':' 

 

Empty linestyles should be handled properly:: 

 

sage: get_matplotlib_linestyle("", 'short') 

'' 

sage: get_matplotlib_linestyle("", 'long') 

'None' 

sage: get_matplotlib_linestyle(None, 'short') is None 

True 

 

Linestyles with ``"default"`` or ``"steps"`` in them should also be 

properly handled. For instance, matplotlib understands only the short 

version when ``"steps"`` is used:: 

 

sage: get_matplotlib_linestyle("default", "short") 

'' 

sage: get_matplotlib_linestyle("steps--", "short") 

'steps--' 

sage: get_matplotlib_linestyle("steps-predashed", "long") 

'steps-pre--' 

 

Finally, raise error on invalid linestyles:: 

 

sage: get_matplotlib_linestyle("isthissage", "long") 

Traceback (most recent call last): 

... 

ValueError: WARNING: Unrecognized linestyle 'isthissage'. Possible 

linestyle options are: 

{'solid', 'dashed', 'dotted', dashdot', 'None'}, respectively {'-', 

'--', ':', '-.', ''} 

 

""" 

long_to_short_dict={'solid' : '-','dashed' : '--', 'dotted' : ':', 

'dashdot':'-.'} 

short_to_long_dict={'-' : 'solid','--' : 'dashed', ':' : 'dotted', 

'-.':'dashdot'} 

 

# We need this to take care of region plot. Essentially, if None is 

# passed, then we just return back the same thing. 

if linestyle is None: 

return None 

 

if linestyle.startswith("default"): 

return get_matplotlib_linestyle(linestyle.strip("default"), "short") 

elif linestyle.startswith("steps"): 

if linestyle.startswith("steps-mid"): 

return "steps-mid" + get_matplotlib_linestyle( 

linestyle.strip("steps-mid"), "short") 

elif linestyle.startswith("steps-post"): 

return "steps-post" + get_matplotlib_linestyle( 

linestyle.strip("steps-post"), "short") 

elif linestyle.startswith("steps-pre"): 

return "steps-pre" + get_matplotlib_linestyle( 

linestyle.strip("steps-pre"), "short") 

else: 

return "steps" + get_matplotlib_linestyle( 

linestyle.strip("steps"), "short") 

 

if return_type == 'short': 

if linestyle in short_to_long_dict.keys(): 

return linestyle 

elif linestyle == "" or linestyle == " " or linestyle == "None": 

return '' 

elif linestyle in long_to_short_dict.keys(): 

return long_to_short_dict[linestyle] 

else: 

raise ValueError("WARNING: Unrecognized linestyle '%s'. " 

"Possible linestyle options are:\n{'solid', " 

"'dashed', 'dotted', dashdot', 'None'}, " 

"respectively {'-', '--', ':', '-.', ''}"% 

(linestyle)) 

 

elif return_type == 'long': 

if linestyle in long_to_short_dict.keys(): 

return linestyle 

elif linestyle == "" or linestyle == " " or linestyle == "None": 

return "None" 

elif linestyle in short_to_long_dict.keys(): 

return short_to_long_dict[linestyle] 

else: 

raise ValueError("WARNING: Unrecognized linestyle '%s'. " 

"Possible linestyle options are:\n{'solid', " 

"'dashed', 'dotted', dashdot', 'None'}, " 

"respectively {'-', '--', ':', '-.', ''}"% 

(linestyle))