Draw a spiral like an ellipse
up vote
3
down vote
favorite
I am trying to draw the following diagram in latex:

I find the following command :
documentclass{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}
draw [domain=0:25.1327,variable=t,smooth,samples=75]
plot ({t r}: {0.002*t*t});
end{tikzpicture}
end{document}
But it's like a circle.
Can anyone help me?
tikz-pgf pgfplots
New contributor
Mohammad is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
up vote
3
down vote
favorite
I am trying to draw the following diagram in latex:

I find the following command :
documentclass{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}
draw [domain=0:25.1327,variable=t,smooth,samples=75]
plot ({t r}: {0.002*t*t});
end{tikzpicture}
end{document}
But it's like a circle.
Can anyone help me?
tikz-pgf pgfplots
New contributor
Mohammad is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1
Could you please provide with us the equation of that spiral?
– zyy
2 hours ago
It's phase plane portrait of differential equations, x'=Ax that A=[matrix 2x2]. for more details please check the link @zyy
– Mohammad
1 hour ago
@Mohammad Could you please provide with us the equation of that spiral?
– Andrew
1 hour ago
@Andrew This is the formula [formula][1] [1]: chart.googleapis.com/…
– Mohammad
1 hour ago
add a comment |
up vote
3
down vote
favorite
up vote
3
down vote
favorite
I am trying to draw the following diagram in latex:

I find the following command :
documentclass{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}
draw [domain=0:25.1327,variable=t,smooth,samples=75]
plot ({t r}: {0.002*t*t});
end{tikzpicture}
end{document}
But it's like a circle.
Can anyone help me?
tikz-pgf pgfplots
New contributor
Mohammad is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I am trying to draw the following diagram in latex:

I find the following command :
documentclass{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}
draw [domain=0:25.1327,variable=t,smooth,samples=75]
plot ({t r}: {0.002*t*t});
end{tikzpicture}
end{document}
But it's like a circle.
Can anyone help me?
tikz-pgf pgfplots
tikz-pgf pgfplots
New contributor
Mohammad is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Mohammad is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited 1 hour ago
Andrew
30.3k34380
30.3k34380
New contributor
Mohammad is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 2 hours ago
Mohammad
184
184
New contributor
Mohammad is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Mohammad is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Mohammad is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1
Could you please provide with us the equation of that spiral?
– zyy
2 hours ago
It's phase plane portrait of differential equations, x'=Ax that A=[matrix 2x2]. for more details please check the link @zyy
– Mohammad
1 hour ago
@Mohammad Could you please provide with us the equation of that spiral?
– Andrew
1 hour ago
@Andrew This is the formula [formula][1] [1]: chart.googleapis.com/…
– Mohammad
1 hour ago
add a comment |
1
Could you please provide with us the equation of that spiral?
– zyy
2 hours ago
It's phase plane portrait of differential equations, x'=Ax that A=[matrix 2x2]. for more details please check the link @zyy
– Mohammad
1 hour ago
@Mohammad Could you please provide with us the equation of that spiral?
– Andrew
1 hour ago
@Andrew This is the formula [formula][1] [1]: chart.googleapis.com/…
– Mohammad
1 hour ago
1
1
Could you please provide with us the equation of that spiral?
– zyy
2 hours ago
Could you please provide with us the equation of that spiral?
– zyy
2 hours ago
It's phase plane portrait of differential equations, x'=Ax that A=[matrix 2x2]. for more details please check the link @zyy
– Mohammad
1 hour ago
It's phase plane portrait of differential equations, x'=Ax that A=[matrix 2x2]. for more details please check the link @zyy
– Mohammad
1 hour ago
@Mohammad Could you please provide with us the equation of that spiral?
– Andrew
1 hour ago
@Mohammad Could you please provide with us the equation of that spiral?
– Andrew
1 hour ago
@Andrew This is the formula [formula][1] [1]: chart.googleapis.com/…
– Mohammad
1 hour ago
@Andrew This is the formula [formula][1] [1]: chart.googleapis.com/…
– Mohammad
1 hour ago
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
Your code shows a circular spiral because you punch in a circular spiral. Try e.g.
documentclass{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}
draw [rotate=-45]
plot[domain=0:25.1327,variable=t,smooth,samples=75] ({t r}: {0.002*t*t} and {0.004*t*t} );
end{tikzpicture}
end{document}

And to add the axes and the arrow, you could use
documentclass{article}
usepackage{tikz}
usetikzlibrary{decorations.markings}
begin{document}
begin{tikzpicture}
draw[-stealth] (-3,0) -- (3,0) node[below]{$x$};
draw[-stealth] (0,-3) -- (0,3) node[left]{$y$};
draw [rotate=-45,postaction=decorate,decoration={markings,
mark=at position 0.93 with {arrow{latex}}}]
plot[domain=0:32,variable=t,smooth,samples=75] ({t r}: {0.002*t*t} and {0.004*t*t} );
end{tikzpicture}
end{document}

Thanks a lot for your help
– Mohammad
8 mins ago
@Mohammad You're welcome!
– marmot
7 mins ago
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
Your code shows a circular spiral because you punch in a circular spiral. Try e.g.
documentclass{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}
draw [rotate=-45]
plot[domain=0:25.1327,variable=t,smooth,samples=75] ({t r}: {0.002*t*t} and {0.004*t*t} );
end{tikzpicture}
end{document}

And to add the axes and the arrow, you could use
documentclass{article}
usepackage{tikz}
usetikzlibrary{decorations.markings}
begin{document}
begin{tikzpicture}
draw[-stealth] (-3,0) -- (3,0) node[below]{$x$};
draw[-stealth] (0,-3) -- (0,3) node[left]{$y$};
draw [rotate=-45,postaction=decorate,decoration={markings,
mark=at position 0.93 with {arrow{latex}}}]
plot[domain=0:32,variable=t,smooth,samples=75] ({t r}: {0.002*t*t} and {0.004*t*t} );
end{tikzpicture}
end{document}

Thanks a lot for your help
– Mohammad
8 mins ago
@Mohammad You're welcome!
– marmot
7 mins ago
add a comment |
up vote
1
down vote
accepted
Your code shows a circular spiral because you punch in a circular spiral. Try e.g.
documentclass{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}
draw [rotate=-45]
plot[domain=0:25.1327,variable=t,smooth,samples=75] ({t r}: {0.002*t*t} and {0.004*t*t} );
end{tikzpicture}
end{document}

And to add the axes and the arrow, you could use
documentclass{article}
usepackage{tikz}
usetikzlibrary{decorations.markings}
begin{document}
begin{tikzpicture}
draw[-stealth] (-3,0) -- (3,0) node[below]{$x$};
draw[-stealth] (0,-3) -- (0,3) node[left]{$y$};
draw [rotate=-45,postaction=decorate,decoration={markings,
mark=at position 0.93 with {arrow{latex}}}]
plot[domain=0:32,variable=t,smooth,samples=75] ({t r}: {0.002*t*t} and {0.004*t*t} );
end{tikzpicture}
end{document}

Thanks a lot for your help
– Mohammad
8 mins ago
@Mohammad You're welcome!
– marmot
7 mins ago
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
Your code shows a circular spiral because you punch in a circular spiral. Try e.g.
documentclass{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}
draw [rotate=-45]
plot[domain=0:25.1327,variable=t,smooth,samples=75] ({t r}: {0.002*t*t} and {0.004*t*t} );
end{tikzpicture}
end{document}

And to add the axes and the arrow, you could use
documentclass{article}
usepackage{tikz}
usetikzlibrary{decorations.markings}
begin{document}
begin{tikzpicture}
draw[-stealth] (-3,0) -- (3,0) node[below]{$x$};
draw[-stealth] (0,-3) -- (0,3) node[left]{$y$};
draw [rotate=-45,postaction=decorate,decoration={markings,
mark=at position 0.93 with {arrow{latex}}}]
plot[domain=0:32,variable=t,smooth,samples=75] ({t r}: {0.002*t*t} and {0.004*t*t} );
end{tikzpicture}
end{document}

Your code shows a circular spiral because you punch in a circular spiral. Try e.g.
documentclass{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}
draw [rotate=-45]
plot[domain=0:25.1327,variable=t,smooth,samples=75] ({t r}: {0.002*t*t} and {0.004*t*t} );
end{tikzpicture}
end{document}

And to add the axes and the arrow, you could use
documentclass{article}
usepackage{tikz}
usetikzlibrary{decorations.markings}
begin{document}
begin{tikzpicture}
draw[-stealth] (-3,0) -- (3,0) node[below]{$x$};
draw[-stealth] (0,-3) -- (0,3) node[left]{$y$};
draw [rotate=-45,postaction=decorate,decoration={markings,
mark=at position 0.93 with {arrow{latex}}}]
plot[domain=0:32,variable=t,smooth,samples=75] ({t r}: {0.002*t*t} and {0.004*t*t} );
end{tikzpicture}
end{document}

edited 14 mins ago
answered 20 mins ago
marmot
82k492175
82k492175
Thanks a lot for your help
– Mohammad
8 mins ago
@Mohammad You're welcome!
– marmot
7 mins ago
add a comment |
Thanks a lot for your help
– Mohammad
8 mins ago
@Mohammad You're welcome!
– marmot
7 mins ago
Thanks a lot for your help
– Mohammad
8 mins ago
Thanks a lot for your help
– Mohammad
8 mins ago
@Mohammad You're welcome!
– marmot
7 mins ago
@Mohammad You're welcome!
– marmot
7 mins ago
add a comment |
Mohammad is a new contributor. Be nice, and check out our Code of Conduct.
Mohammad is a new contributor. Be nice, and check out our Code of Conduct.
Mohammad is a new contributor. Be nice, and check out our Code of Conduct.
Mohammad is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f464222%2fdraw-a-spiral-like-an-ellipse%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Could you please provide with us the equation of that spiral?
– zyy
2 hours ago
It's phase plane portrait of differential equations, x'=Ax that A=[matrix 2x2]. for more details please check the link @zyy
– Mohammad
1 hour ago
@Mohammad Could you please provide with us the equation of that spiral?
– Andrew
1 hour ago
@Andrew This is the formula [formula][1] [1]: chart.googleapis.com/…
– Mohammad
1 hour ago