Qurak

Label a plot

Guida pratica 6 passi, eseguiti in ordine in una sola sessione. Ogni passo è stato eseguito sul motore e l'output qui sotto è ciò che ha prodotto.

Passo 1
Plot[Sin[x], {x, 0, 22}, PlotLabel -> "sin(x)"]
Output
-Graphics-
Passo 2
Plot[Sin[x], {x, 0, 22}, PlotLabel -> Style["sin(x)", FontSize -> 18]]
Output
-Graphics-
Passo 3
Plot[Sin[x], {x, 0, 22}, PlotLabel -> Style["sin(x)", FontSize -> 18], Background -> StandardYellow]
Output
-Graphics-
Passo 4
Labeled[Plot[Sin[x], {x, 0, 22}], "sin(x)"]
Output
Labeled[-Graphics-, sin(x)]
Passo 5
Labeled[Plot[Sin[x], {x, 0, 22}], Style["sin(x)", "Graphics"]]
Output
Labeled[-Graphics-, sin(x)]
Passo 6
Labeled[Plot[Sin[x], {x, 0, 22}], Style["sin(x)", "Graphics"], Background -> StandardYellow]
Output
Labeled[-Graphics-, sin(x), Background -> StandardYellow]

Funzioni usate

Ricette correlate

Tutte le ricette · Guida delle funzioni · Usa questo da un client MCP