Plotting incomplete elliptic integral of 1st kindcomplete elliptic integral of the first kindAsymptotic approximation to incomplete elliptic integral of third kind at a pole - determine constantApproximations of the incomplete elliptic integral of the second kindAsymptotic behavior of elliptic integral (first kind)Weierstrass $wp$ function inverts incomplete elliptic integralcomplete elliptic integral of the 1st kind with infinitely large argumentIncomplete elliptic integral of the second kind with negative parameterintegrating incomplete elliptic integral of first kindReal and imaginary parts for incomplete elliptic integral 1st kind with complex argumentIncomplete elliptic integral and Jacobi's form
Is it insecure to send a password in a `curl` command?
Why do tuner card drivers fail to build after kernel update to 4.4.0-143-generic?
"Words were different when they (lived / were living) inside of you"
As a new Ubuntu desktop 18.04 LTS user, do I need to use ufw for a firewall or is iptables sufficient?
Violin - Can double stops be played when the strings are not next to each other?
What's the meaning of a knight fighting a snail in medieval book illustrations?
Is a party consisting of only a bard, a cleric, and a warlock functional long-term?
What options are left, if Britain cannot decide?
How difficult is it to simply disable/disengage the MCAS on Boeing 737 Max 8 & 9 Aircraft?
What is the significance behind "40 days" that often appears in the Bible?
How to explain that I do not want to visit a country due to personal safety concern?
Why does a Star of David appear at a rally with Francisco Franco?
Do I need life insurance if I can cover my own funeral costs?
Custom alignment for GeoMarkers
Adventure Game (text based) in C++
When to use a slotted vs. solid turner?
I got the following comment from a reputed math journal. What does it mean?
Does multi-classing into Fighter give you heavy armor proficiency?
Is it good practice to use Linear Least-Squares with SMA?
Are ETF trackers fundamentally better than individual stocks?
How could an airship be repaired midflight?
Did Ender ever learn that he killed Stilson and/or Bonzo?
Why did it take so long to abandon sail after steamships were demonstrated?
Is there a place to find the pricing for things not mentioned in the PHB? (non-magical)
Plotting incomplete elliptic integral of 1st kind
complete elliptic integral of the first kindAsymptotic approximation to incomplete elliptic integral of third kind at a pole - determine constantApproximations of the incomplete elliptic integral of the second kindAsymptotic behavior of elliptic integral (first kind)Weierstrass $wp$ function inverts incomplete elliptic integralcomplete elliptic integral of the 1st kind with infinitely large argumentIncomplete elliptic integral of the second kind with negative parameterintegrating incomplete elliptic integral of first kindReal and imaginary parts for incomplete elliptic integral 1st kind with complex argumentIncomplete elliptic integral and Jacobi's form
$begingroup$
The incomplete elliptic integral of 1st kind is:
$$F(varphi,k)=int_0^varphi frac1sqrt1 - k^2 sin^2(x) mathrmdx$$
I wanted to set a small dataframe in order to plot myself some points of $F(varphi,k)$ for different $varphi$ and $k$. Here is the code I imagined:
v.phi <- seq(0, 2*pi, 1)
n.phi <- length(v.phi)
v.k <- seq(-1, +1, 0.5)
n.k <- length(v.k)
k <- rep(v.k, each = n.phi, times = 1)
phi <- rep(v.phi, each = 1, times = n.k)
df <- data.frame(k, phi)
func <- function(x, k) 1/sqrt(1 - (k*sin(x))^2)
df$area <- integrate(func,lower=0, upper=df$phi, k=df$k)
But this generates errors and I am obviously mistaking in constructing the new variable df$area... Could someone put me in the right way?
real-analysis elliptic-integrals
$endgroup$
add a comment |
$begingroup$
The incomplete elliptic integral of 1st kind is:
$$F(varphi,k)=int_0^varphi frac1sqrt1 - k^2 sin^2(x) mathrmdx$$
I wanted to set a small dataframe in order to plot myself some points of $F(varphi,k)$ for different $varphi$ and $k$. Here is the code I imagined:
v.phi <- seq(0, 2*pi, 1)
n.phi <- length(v.phi)
v.k <- seq(-1, +1, 0.5)
n.k <- length(v.k)
k <- rep(v.k, each = n.phi, times = 1)
phi <- rep(v.phi, each = 1, times = n.k)
df <- data.frame(k, phi)
func <- function(x, k) 1/sqrt(1 - (k*sin(x))^2)
df$area <- integrate(func,lower=0, upper=df$phi, k=df$k)
But this generates errors and I am obviously mistaking in constructing the new variable df$area... Could someone put me in the right way?
real-analysis elliptic-integrals
$endgroup$
add a comment |
$begingroup$
The incomplete elliptic integral of 1st kind is:
$$F(varphi,k)=int_0^varphi frac1sqrt1 - k^2 sin^2(x) mathrmdx$$
I wanted to set a small dataframe in order to plot myself some points of $F(varphi,k)$ for different $varphi$ and $k$. Here is the code I imagined:
v.phi <- seq(0, 2*pi, 1)
n.phi <- length(v.phi)
v.k <- seq(-1, +1, 0.5)
n.k <- length(v.k)
k <- rep(v.k, each = n.phi, times = 1)
phi <- rep(v.phi, each = 1, times = n.k)
df <- data.frame(k, phi)
func <- function(x, k) 1/sqrt(1 - (k*sin(x))^2)
df$area <- integrate(func,lower=0, upper=df$phi, k=df$k)
But this generates errors and I am obviously mistaking in constructing the new variable df$area... Could someone put me in the right way?
real-analysis elliptic-integrals
$endgroup$
The incomplete elliptic integral of 1st kind is:
$$F(varphi,k)=int_0^varphi frac1sqrt1 - k^2 sin^2(x) mathrmdx$$
I wanted to set a small dataframe in order to plot myself some points of $F(varphi,k)$ for different $varphi$ and $k$. Here is the code I imagined:
v.phi <- seq(0, 2*pi, 1)
n.phi <- length(v.phi)
v.k <- seq(-1, +1, 0.5)
n.k <- length(v.k)
k <- rep(v.k, each = n.phi, times = 1)
phi <- rep(v.phi, each = 1, times = n.k)
df <- data.frame(k, phi)
func <- function(x, k) 1/sqrt(1 - (k*sin(x))^2)
df$area <- integrate(func,lower=0, upper=df$phi, k=df$k)
But this generates errors and I am obviously mistaking in constructing the new variable df$area... Could someone put me in the right way?
real-analysis elliptic-integrals
real-analysis elliptic-integrals
asked Mar 12 at 10:28
AndrewAndrew
214
214
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
return StackExchange.using("mathjaxEditing", function ()
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
);
);
, "mathjax-editing");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "69"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
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%2fmath.stackexchange.com%2fquestions%2f3144918%2fplotting-incomplete-elliptic-integral-of-1st-kind%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Mathematics 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.
Use MathJax to format equations. MathJax reference.
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%2fmath.stackexchange.com%2fquestions%2f3144918%2fplotting-incomplete-elliptic-integral-of-1st-kind%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