python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to add color and drape to 3D plot
I have used the following code:
import numpy as np
import matplotlib.pyplot as plt
def f(x, y):
return ( ((np.log(x**2) / np.log(y**3)) / x**2 )*500)
x = np.linspace(0, 600, 4)
y = np.linspace(0,...
Giampaolo Levorato
Votes: 0
Answers: 0
Quiver to [0,0,0] isn't showing
I am trying to build a plot in 3d with matplotlib which has a dot at [0,0,0] and a quiver (vector) "looking" to it from [10, 10, 10]. But when I run the code I only get the dot. Why is that ...
Julian
Votes: 0
Answers: 1
3d z axis-log plot
In order to create a 3d plot using plot_surface and wireframe I wrote this (looking here around)
from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
from matplotlib import rc
from ...
Drudox lebowsky
Votes: 0
Answers: 1
How can I reverse the axes in 3d graph?
Just starting with 3D plotting in Matplotlib. In the image below, how can I reverse the x and y axes and have a common origin of 0 for both the axes as written in red ink ? I could not find something ...
lqope54
Votes: 0
Answers: 0