best way to plot the 3D shape made by many intersecting f(x,y,z) functions?Way to have inutition about the shape of a curve?Best way to plot a 4 dimensional meshgridShape of graph and plotPlot shape with its control netBest program for multiplying many multivariable polynomialsPlot the characteristics for Burgers equationFinding the best functions for different (x,y) points?How to plot a radial cutoff functionsHow to manage width and height the plot in MapleHow to plot “chainsaw” functions in Maple?
Are there situations where a child is permitted to refer to their parent by their first name?
Provisioning profile doesn't include the application-identifier and keychain-access-groups entitlements
Can infringement of a trademark be pursued for using a company's name in a sentence?
If Invisibility ends because the original caster casts a non-concentration spell, does Invisibility also end on other targets of the original casting?
Am I not good enough for you?
Can someone explain this Mudra being done by Ramakrishna Paramhansa in Samadhi?
It's a yearly task, alright
What to do when during a meeting client people start to fight (even physically) with each others?
Force user to remove USB token
Can you reject a postdoc offer after the PI has paid a large sum for flights/accommodation for your visit?
What wound would be of little consequence to a biped but terrible for a quadruped?
How can I discourage/prevent PCs from using door choke-points?
Potentiometer like component
Examples of odd-dimensional manifolds that do not admit contact structure
What does it mean when multiple 々 marks follow a 、?
What is the blue range indicating on this manifold pressure gauge?
dabei is pointing to what preposition or fact "Ich war gerade dabei die Tür abzuschliessen. Da hast du angerufen."
Why does Deadpool say "You're welcome, Canada," after shooting Ryan Reynolds in the end credits?
This equation is outside the page, how to modify it
Is "history" a male-biased word ("his+story")?
When is a batch class instantiated when you schedule it?
Does the Bracer of Flying Daggers benefit from the Dueling fighting style?
Time dilation for a moving electronic clock
Replacing Windows 7 security updates with anti-virus?
best way to plot the 3D shape made by many intersecting f(x,y,z) functions?
Way to have inutition about the shape of a curve?Best way to plot a 4 dimensional meshgridShape of graph and plotPlot shape with its control netBest program for multiplying many multivariable polynomialsPlot the characteristics for Burgers equationFinding the best functions for different (x,y) points?How to plot a radial cutoff functionsHow to manage width and height the plot in MapleHow to plot “chainsaw” functions in Maple?
$begingroup$
What's the best way to use a computer to plot the 3D shape made by many intersecting f(x,y,z) functions?
I was trying to do something like the following, except I still have not idea what the shape the intersecting functions makes when viewing the plot because its too messy:
# Jupyter Notebook
#--------------------------------------------
# attempting to visualize the intersections of
# the following f(x,y,z) functions:
# y = x <= 3D-plane
# z = x + y <= 3D-plane
# z = 0 <= 3D-plane
# y = 0 <= 3D-plane
# x = 1 <= 3D-plane
%matplotlib
from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
import numpy as np
def NewPlot():
fig = plt.figure()
ax = Axes3D(fig)
ax.set_xlabel('X')
ax.set_ylabel('Y')
ax.set_zlabel('Z')
return ax
def Mesh():
A=np.linspace(-5,5,20)
B=np.linspace(-5,5,20)
A,B=np.meshgrid(A,B)
return A,B
ax = NewPlot()
# Graph y = x
X,Z = Mesh()
Y = X
ax.scatter(X,Y,Z)
# Graph z = x+y
X,Y = Mesh()
Z=X+Y
ax.scatter(X,Y,Z)
# Graph Z = 0
X,Y = Mesh()
Z=0*X
ax.scatter(X,Y,Z)
# Graph Y = 0
X,Z = Mesh()
Y=0*X
ax.scatter(X,Y,Z)
# Graph X = 1
Y,Z = Mesh()
X=1 + 0*Y
ax.scatter(X,Y,Z)
plt.show()
i realize this might be asking for much, but if there were a way to just show the points on the surface of the intersecting functions? it doesn't necessarily need to be matplotlib based, could be done in other math scripting languages such as octave, R, etc...
graphing-functions matlab 3d maple mathematica
$endgroup$
add a comment |
$begingroup$
What's the best way to use a computer to plot the 3D shape made by many intersecting f(x,y,z) functions?
I was trying to do something like the following, except I still have not idea what the shape the intersecting functions makes when viewing the plot because its too messy:
# Jupyter Notebook
#--------------------------------------------
# attempting to visualize the intersections of
# the following f(x,y,z) functions:
# y = x <= 3D-plane
# z = x + y <= 3D-plane
# z = 0 <= 3D-plane
# y = 0 <= 3D-plane
# x = 1 <= 3D-plane
%matplotlib
from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
import numpy as np
def NewPlot():
fig = plt.figure()
ax = Axes3D(fig)
ax.set_xlabel('X')
ax.set_ylabel('Y')
ax.set_zlabel('Z')
return ax
def Mesh():
A=np.linspace(-5,5,20)
B=np.linspace(-5,5,20)
A,B=np.meshgrid(A,B)
return A,B
ax = NewPlot()
# Graph y = x
X,Z = Mesh()
Y = X
ax.scatter(X,Y,Z)
# Graph z = x+y
X,Y = Mesh()
Z=X+Y
ax.scatter(X,Y,Z)
# Graph Z = 0
X,Y = Mesh()
Z=0*X
ax.scatter(X,Y,Z)
# Graph Y = 0
X,Z = Mesh()
Y=0*X
ax.scatter(X,Y,Z)
# Graph X = 1
Y,Z = Mesh()
X=1 + 0*Y
ax.scatter(X,Y,Z)
plt.show()
i realize this might be asking for much, but if there were a way to just show the points on the surface of the intersecting functions? it doesn't necessarily need to be matplotlib based, could be done in other math scripting languages such as octave, R, etc...
graphing-functions matlab 3d maple mathematica
$endgroup$
$begingroup$
I am a big fan of Grapher.
$endgroup$
– Rodrigo de Azevedo
Mar 10 at 22:16
$begingroup$
best answer was to use maple instead of matplotlib
$endgroup$
– DiscreteMath
yesterday
add a comment |
$begingroup$
What's the best way to use a computer to plot the 3D shape made by many intersecting f(x,y,z) functions?
I was trying to do something like the following, except I still have not idea what the shape the intersecting functions makes when viewing the plot because its too messy:
# Jupyter Notebook
#--------------------------------------------
# attempting to visualize the intersections of
# the following f(x,y,z) functions:
# y = x <= 3D-plane
# z = x + y <= 3D-plane
# z = 0 <= 3D-plane
# y = 0 <= 3D-plane
# x = 1 <= 3D-plane
%matplotlib
from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
import numpy as np
def NewPlot():
fig = plt.figure()
ax = Axes3D(fig)
ax.set_xlabel('X')
ax.set_ylabel('Y')
ax.set_zlabel('Z')
return ax
def Mesh():
A=np.linspace(-5,5,20)
B=np.linspace(-5,5,20)
A,B=np.meshgrid(A,B)
return A,B
ax = NewPlot()
# Graph y = x
X,Z = Mesh()
Y = X
ax.scatter(X,Y,Z)
# Graph z = x+y
X,Y = Mesh()
Z=X+Y
ax.scatter(X,Y,Z)
# Graph Z = 0
X,Y = Mesh()
Z=0*X
ax.scatter(X,Y,Z)
# Graph Y = 0
X,Z = Mesh()
Y=0*X
ax.scatter(X,Y,Z)
# Graph X = 1
Y,Z = Mesh()
X=1 + 0*Y
ax.scatter(X,Y,Z)
plt.show()
i realize this might be asking for much, but if there were a way to just show the points on the surface of the intersecting functions? it doesn't necessarily need to be matplotlib based, could be done in other math scripting languages such as octave, R, etc...
graphing-functions matlab 3d maple mathematica
$endgroup$
What's the best way to use a computer to plot the 3D shape made by many intersecting f(x,y,z) functions?
I was trying to do something like the following, except I still have not idea what the shape the intersecting functions makes when viewing the plot because its too messy:
# Jupyter Notebook
#--------------------------------------------
# attempting to visualize the intersections of
# the following f(x,y,z) functions:
# y = x <= 3D-plane
# z = x + y <= 3D-plane
# z = 0 <= 3D-plane
# y = 0 <= 3D-plane
# x = 1 <= 3D-plane
%matplotlib
from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
import numpy as np
def NewPlot():
fig = plt.figure()
ax = Axes3D(fig)
ax.set_xlabel('X')
ax.set_ylabel('Y')
ax.set_zlabel('Z')
return ax
def Mesh():
A=np.linspace(-5,5,20)
B=np.linspace(-5,5,20)
A,B=np.meshgrid(A,B)
return A,B
ax = NewPlot()
# Graph y = x
X,Z = Mesh()
Y = X
ax.scatter(X,Y,Z)
# Graph z = x+y
X,Y = Mesh()
Z=X+Y
ax.scatter(X,Y,Z)
# Graph Z = 0
X,Y = Mesh()
Z=0*X
ax.scatter(X,Y,Z)
# Graph Y = 0
X,Z = Mesh()
Y=0*X
ax.scatter(X,Y,Z)
# Graph X = 1
Y,Z = Mesh()
X=1 + 0*Y
ax.scatter(X,Y,Z)
plt.show()
i realize this might be asking for much, but if there were a way to just show the points on the surface of the intersecting functions? it doesn't necessarily need to be matplotlib based, could be done in other math scripting languages such as octave, R, etc...
graphing-functions matlab 3d maple mathematica
graphing-functions matlab 3d maple mathematica
asked Mar 10 at 19:51
DiscreteMathDiscreteMath
595
595
$begingroup$
I am a big fan of Grapher.
$endgroup$
– Rodrigo de Azevedo
Mar 10 at 22:16
$begingroup$
best answer was to use maple instead of matplotlib
$endgroup$
– DiscreteMath
yesterday
add a comment |
$begingroup$
I am a big fan of Grapher.
$endgroup$
– Rodrigo de Azevedo
Mar 10 at 22:16
$begingroup$
best answer was to use maple instead of matplotlib
$endgroup$
– DiscreteMath
yesterday
$begingroup$
I am a big fan of Grapher.
$endgroup$
– Rodrigo de Azevedo
Mar 10 at 22:16
$begingroup$
I am a big fan of Grapher.
$endgroup$
– Rodrigo de Azevedo
Mar 10 at 22:16
$begingroup$
best answer was to use maple instead of matplotlib
$endgroup$
– DiscreteMath
yesterday
$begingroup$
best answer was to use maple instead of matplotlib
$endgroup$
– DiscreteMath
yesterday
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%2f3142800%2fbest-way-to-plot-the-3d-shape-made-by-many-intersecting-fx-y-z-functions%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%2f3142800%2fbest-way-to-plot-the-3d-shape-made-by-many-intersecting-fx-y-z-functions%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
$begingroup$
I am a big fan of Grapher.
$endgroup$
– Rodrigo de Azevedo
Mar 10 at 22:16
$begingroup$
best answer was to use maple instead of matplotlib
$endgroup$
– DiscreteMath
yesterday