Tagged Questions
0
votes
0answers
6 views
Control bounds of z-axis when using Plot3D
I've specified my function F[x,y], now when I graph it using Plot3D, how can I control the bounds of the z-axis that Mathematica uses?
1
vote
2answers
26 views
Cross section 2D data of symmetric len into Z matrix MATLAB - 3D plot from 2D cross section
I have a problem and maybe you will be able to help me. Like in the title i have cross section data of a symmetric lens - coordinates s=-100:1:100 and height y - and I would like to create 3D plot the ...
-2
votes
0answers
56 views
How to plot a function of two variables in R ? [closed]
Like I want to plot z = 2*x + 3*y. x and y are vectors with 20 values. So z will also have 20 values corresponding to those. Please help. I want to see the variation of z when (x,y) changes.
0
votes
1answer
39 views
Matlab 3D plot plotting weird lines?
I have 3 arrays X, Y, Z that look something like this:
x = [1, 1, 1, 2, 2, 2, 3, 3, 3]
y = [1, 2, 3, 1, 2, 3, 1, 2, 3]
z = [1, 2, 3, 2, 4, 6, 3, 6, 9]
Then I am plotting these points with ...
0
votes
0answers
5 views
how to plot multidim array in matlab
I got a function of three parameters that I wanted to plot in matlab and I varied the values of the parameters (50 values for each parameter) for creating a multidimensional array 50x50x50. At first I ...
0
votes
1answer
65 views
How to animate this 3D plot in Matlab?
My current code :
a=7
f=10
T=1/f;
v=40
wl=v/f;
x1=1;
x2=30
step=0.01
t=x1:step:x2;
x=x1:step:x2;
y=a*sind(2*pi*f*(t+(x*T)/wl));
h=plot3(x,y,t);
set(h,'EraseMode','xor','MarkerSize',20)
...
0
votes
1answer
24 views
How to convert this into a 3D mesh plot?
I have the following code :
a=7
f=10
T=1/f;
v=40
wl=v/f;
x1=1;
x2=30
step=0.01
t=x1:step:x2;
x=x1:step:x2;
y=a*sind(2*pi*f*(t+(x*T)/wl));
h=plot(x,y);
I tried h=plot3(x,y,t) but the line itself ...
0
votes
1answer
43 views
matplotlib: grid in 3D plots
In matplotlib, how can I show a grid in 3D scatter plot?
In 2D plots I just do: plt.grid(True) and it works like a charm. Now with 3D plots the same call returns a warning:
File ...
0
votes
0answers
51 views
Create 3D model
Using pylab I am trying to make a 3D model of the nuclei of the hypothalamus. Here is the image I am going to try to represent.
Looking at the image you see ten nuclei. What I want to do is make ...
4
votes
1answer
66 views
Draw a terrain with python?
I have a numpy 2d-array representing the geometrical height of a specific area where a street will be build. I can visualize this using scipy.misc.toimage. However I would like to get a simple 3D view ...
4
votes
1answer
122 views
Attractive 3D plot in R
I am writing a proposal and need a 3D plot something like this:
but preferably more attractive. I need the size of each point to reflect the abundance of the species and an outline of the volume ...
0
votes
2answers
94 views
matlab animate 2 3d plots in same figure, have hold on one and not the other
For my current project in matlab i am modeling the spread of an infection across the globe. the main method i am using for letting the infection jump is pre-set airport locations. I also show when ...
0
votes
1answer
119 views
Generate Equation from 3D surf Plot in Matlab
I am wondering if anyone knows (or is it possible?) how to generate a trend equation from a 3D surf plot from Matlab? I understand that we can create trendline for 2D plots (linear and nonlinear) and ...
2
votes
1answer
114 views
How to draw parametric 3d curve with smoothing in R?
I have the data which are parametric 3d curve:
t x y z
0.000 3.734 2.518 -0.134
0.507 2.604 9.059 0.919
0.861 1.532 11.584 -0.248
1.314 1.015 1.886 ...
0
votes
3answers
352 views
Python: 3D contour from a 2D image - pylab and contourf
I have a question regarding Python(pylab) and plotting -
I'm able to load and display an image (code below loads the image below), but I'm unable to plot this as a contour in 3D, I understand an array ...
0
votes
0answers
97 views
How would I created a 3D rose plot in R given I have X, Y, Z, Value?
I have searched and searched and asked and asked on ASA, Linked In, Yahoo answers, etc and I can't find nor figure out how I would build a 3D rose plot when I have X, Y, Z, Gold Value data. So I have ...
0
votes
0answers
104 views
Write data from 3d array to a text file for 4d plotting with gnuplot
I have an array u[i][j][k] with temperatures at a given spot. How should I write my data to a text file for plotting a 3d heat figure with gnuplot?
1
vote
0answers
128 views
Matlab surfc colormap shading
How can I create a 3D plot that has a smooth color gradient, from the lowest value to the highest value. I have tried changing color map, but the only choice that works is the 'default', which looks ...
0
votes
1answer
78 views
intersection of a 3D scalar field and a plane
I need to plot slices of a 3D scalar fields. For example, I have a file with the format:
x1, y1, z1, f1
x2, y2, z2, f2
...
where fs are scalars and x, y, z are coordinates (z is the fastest ...
1
vote
1answer
163 views
Overlap a heatmap in a 3d Matplotlib plot
I am a newbie in matplotlib and I don't know where to look for that...
I want to plot data, where X and Y are parameters of a problem, then Z shows the resolution time for that problem with that ...
-1
votes
1answer
405 views
plot a 3d point in MatLab
I'm trying to plot just one point in any coordinate system: Cartesian, cylindrical or spherical.
I tried plot3(1,1,1) with many values but just shows a tiny point in the same location for all values! ...
3
votes
1answer
449 views
gnuplot splot with equal axes: how to keep z axis on screen?
I am trying to draw a 3D surface plot using gnuplot, with all three axes scaled the same. The problem is the z axis keeps being drawn so the image doesn't fit on the screen. The following commands ...
2
votes
1answer
674 views
Plotting lines between two points (3D) in R-Project
At the moment i am writing an regression algorithm in r-project which tries to "capture" points inside boxes. The algorithm tries to keep the boxes as small as possible, so usually the edges/corners ...
1
vote
1answer
113 views
How to draw only axis in R for 3d plot?
Basically I only want to draw the x, y, z axis with empty plot, but with x, y, z of my own labels on it. Is it possible to do it in R? I know how to draw it in 2d plot.
6
votes
2answers
260 views
3D Visualization Realtime in C++ [closed]
Do you known any 3D visualization library in C++ that can update plots realtime?
I am not searching for something spectacular, just a replacement for MATLAB plot3 function.
My main problem is that i ...
1
vote
1answer
415 views
How to plot a list of vectors as a sphere?
I have an array of normalized vectors (1538 of them) forming a sphere. Also I has an array of numbers of the same size 1538. I want to plot something like this:
I tried the sphere and surf ...
0
votes
1answer
712 views
Matplotlib plotting non uniform data in 3D surface
I have a simple code to plot the points in 3D for Matplotlib as below -
from mpl_toolkits.mplot3d import axes3d
import matplotlib.pyplot as plt
import numpy as np
from numpy import genfromtxt
import ...
0
votes
2answers
749 views
how to plot 3d inequalities on matlab
I want to plot a 3d region in MATLAB bounded from a set of inequalities.
For example:
0 <= x <= 1
sqrt(x) <= y <= 1
0 <= z <= 1 - y
I found a 2d example that someone has done ...
0
votes
1answer
203 views
3D plot of part of hyperboloid
I would like to plot a 3D figure of a hyperbole that is cut down at the bottom of it in the following way (figure)
any ideas?
2
votes
1answer
395 views
Python: 3D plot of a Klein Bottle
So i'm learning python and I am currently on making 3D plots of things. To keep things interesting I want to make a plot of Klein Bottle, but somehow it is not at all working. And i tried two ...
1
vote
0answers
222 views
Plotting an Elipse in 3D
{FIXED! NEW CODE BELOW}
got a slight problem that I need some help/advice with.
A while ago I had an issue with plotting an ellipse in 3D space. The solution I had seemed to work, and rotated ...
3
votes
1answer
514 views
Python matplotlib/pylab - a 3D carpet plot
I would like to draw a 3D carpet plot with Python Pylab or matplotlib. I explain what I mean with carpet plot:
I have points on a X,Y meshgrid. This points have an elevation attached to them, but ...
0
votes
1answer
425 views
Plotting 3D vector in qt
I would like to make a plot of a 3D vector in QT. Is this possible? And if it is possible how do I do it?
0
votes
0answers
85 views
Difference between a contour map and surface map
What is the difference between a contour map and surface map?
I know that for both the lines are connecting the same quantity.
And we can have a colored-in contour map which then becomes a surface ...
1
vote
1answer
390 views
Plot Contour Map Over World Map
I'm trying to plot a counter map over a general map (Asia or US).
Generally speaking (input data is only by example)
% Data Input
long = (:,1);
lat = (:,2);
z = (:,3);
[x,y] = meshgrid(x,y);
z = ...
0
votes
0answers
166 views
Open-source surface plot with lighting model?
I have a three-dimensional surface I would like to plot with a lighting model, i.e., I want it to look like a surface that is being viewed from a certain point of view, with a light source ...
1
vote
1answer
941 views
matplotlib wireframe plot / 3d plot howTo
I would like to have a 3d plot with matplotlib.
Data are the following: I have a matrix with each row containing Y coordinates for the 3d plot. Each row first elements are the X coordinates for the ...
1
vote
3answers
1k views
Gnuplot - plotting position(xyz) vs time data inside a specified space (eg a box) with a pause
Can the following be done in gnuplot? If yes, how?
I have data for time vs position(x,y,z) in a table with t,x,y,z as headers.
I would like to know if I can somehow plot the same time vs position ...
0
votes
1answer
857 views
Matlab: Adding third dimenstion to 2D plot
I have the following code to generate me a 2D plot or 2 normal distributions:
res = zeros(2, 320);
index = 1:320;
% assign some data to the res array and then approximate:
...
4
votes
2answers
269 views
How to emphase some region on a spherical surface
Introduction
I'm trying to emphase some region on a spherical surface saying that this region should be colored as not transparent (alpha = 1.0) and other parts of the sphere should be colored as ...
0
votes
1answer
733 views
3d array Matlab plot
I'm a little stuck plotting a 3D array in MATLAB. I have created some histograms that vary as I change a certain threshold. Meaning, for t=65, I have one histogram, for t=70, another and so on. I ...
1
vote
2answers
211 views
Wire frame and Y-Z view in matlab
When plotting data in matlab I noticed that I constantly have to use the rotate button to go to the Y-Z view. I was wondering if I can automate this, so it comes out in that view first?
The method I ...
0
votes
1answer
186 views
export 3d plot from Mathematica into MATLAB
I am using Mathematica to produce some 3d plots but since the files are huge I can't simply manipulate the 3d graphs in Mathematica, so I decided to export them into MATLAB and work with the graphs ...
0
votes
1answer
346 views
3d plots in matlab based on a matrix [duplicate]
Possible Duplicate:
Matlab 3D Matrix Plot
I have a matrix in matlab that I want to plot as a 3D figure.
Suppose the matrix looks like the following:
A=[4 7 8; 2 3 9 ]
This actually ...
0
votes
0answers
118 views
Adding to a 3D surface plot from a data file
need some help with a project we are doing. we have a surface plot obtained on matlab from a data file, it has three coloumns that correspond to the x, y, z points for each measurement. we need to ...
0
votes
1answer
572 views
Matlab's slice() function not working as desired
I want to plot discrete 2D images at 13 z locations at [4:4:52] using the following lines of code.
a=100;
[mesh.x,mesh.y,mesh.z] = meshgrid(1:1:100,1:1:100,4:4:52);
a_unifdist=0;
b_unifdist=10;
...
3
votes
3answers
2k views
What (free) library may I use for creating 3d surface plot graphic in C#?
I'm looking for a free library that I could use in C# to create 3 dimensional graphics.
I already did it in Java using the "Jzy3d" library and now I'd like to do the same in C#.
But I can't find any ...
1
vote
1answer
137 views
Import picture of an object for plotting purposes?
I'm writing a program to simulate the movement of a chaser following a target. The chaser is supposed to have a camera, and based on the target image, it follows the target.
Now, I've used 4 planar ...
3
votes
1answer
777 views
Matplotlib: imshow in 3d plot
In the plot below, taken from matplotlib's gallery, contourf is used to create a 2d plot beneath the 3d one. My question is, is it possible to use imshow to do the same thing? I would like the colors ...
0
votes
2answers
965 views
Visualizing a toroidal surface in Matlab
I have a problem which is twofold:
How do I plot a toroidal surface in MATLAB, given a major radius R and a minor radius a? To avoid confusion, it is the toroidal/poloidal coordinate system, ...
