Is it possible to have 3 or more variable inputs for a 3D contour plot in GUI?
古いコメントを表示
I'm trying to make a 3D contour plot with an equation that has X,Y,Z and t as a variable input by the user in the GUI. Is it possible to achieve?
1 件のコメント
Basma M
2015 年 6 月 10 日
hi Bastion, i was wondering if you ever knew the correct code for this problem. i am very much interested in the solution you came up with cuz i need to solve the same equation but having difficulties doing so. I would really appreciate your feedback on this, it is somewhat urgent and i've already spent too much time and effort trying to work it out. THANKS
回答 (5 件)
Walter Roberson
2011 年 9 月 11 日
0 投票
In what manner were you hoping to display your 4 dimensional data?
Bastion
2011 年 9 月 11 日
5 件のコメント
Bastion
2011 年 9 月 12 日
Walter Roberson
2011 年 9 月 12 日
According to current theory, Yes, it is possible, if you have a spinning negatively charged black hole and you can enter its outer "naked singularity" without touching its event horizon. However, theory has not yet determined whether it would ever be possible to re-enter *this* Universe afterwards, partly because the concept of "afterwards" would have little meaning once you had managed to complete the trade of time for another spacial dimension in order to be able to construct the graph with 4 spacial dimensions.
See http://www.mathworks.com/matlabcentral/answers/11433-plotting-3d-of-output
Bastion
2011 年 9 月 12 日
Walter Roberson
2011 年 9 月 12 日
You might also consider isosurface() or slice().
Also, some people have indicated that the scatter3() solution I proposed in the linked question has been fine for their needs. Representing a contour in that method might be a bit tricky, though.
Bastion
2011 年 9 月 12 日
Dmitry Borovoy
2011 年 9 月 12 日
0 投票
If you really need to use function just create your own shell-function.
function MyContour3(X,Y,Z,t)
% add logic for assigning t in your equation
contour3(X,Y,Z)
end
26 件のコメント
Bastion
2011 年 9 月 12 日
Dmitry Borovoy
2011 年 9 月 12 日
I don't know what change when GUI is used. I understood that you need 3D contour. But for some reasons you need function that uses 4 input variable where first 3 variables is a simple coordinats and fourth is time that is constant for current moment. Is it correct? So just create your function as I show before
Walter Roberson
2011 年 9 月 12 日
Dmitry, you missed that Bastion needs X, Y, and Z to calculate C (concentration), and thus is trying to do 4 dimensional display: a distance along X to represent the X coordinate, a distance along Y to represent the Y coordinate, a distance along Z to represent the Z coordinate -- but then how do you do the distance along C to represent the resulting value?
Dmitry Borovoy
2011 年 9 月 12 日
sorry, my bad
Bastion
2011 年 9 月 12 日
Walter Roberson
2011 年 9 月 12 日
Do you mean all of the values that give you a specific concentration? If so that would be an isosurface rather than a contour. I suppose you could do multiple isosurface plots in the same axes, but I am not at all sure that you would be able to make any sense out of the result.
Bastion
2011 年 9 月 12 日
Bastion
2011 年 9 月 12 日
Walter Roberson
2011 年 9 月 12 日
What format are you expecting the user to have entered data in to Input_3D_x and so on? Are they to be the X, Y, and Z ranges? If so are you expecting a pair of numbers or are you expecting a single number that you will use as the positive and negative bounds?
Try
Xmax = str2double(get(handles.Input_3D_x,'String'));%%%%% user inputs X
Ymax = str2double(get(handles.Input_3D_y,'String'));%%%%% user inputs Y
Zmax = str2double(get(handles.Input_3D_z,'String'));%%%%% user inputs Z
t = str2double(get(handles.Input_t,'String'));%%%%% user inputs t
[X,Y,Z] = ndgrid(-Xmax:0.25:Xmax, -Ymax:0.25:Ymax, -Zmax:0.25:Zmax);
C = X.*Y.*Z.*t %%%%% The equation that operates the user inputs
But now you have a problem, in that X, Y, and Z are now 3 dimensional arrays. When you talk about contour3(X,Y,C,100) you are implicitly wanting to project along an axes, but C will have multiple values along that axes for each (x,y) position. You need to resolve this.
One resolution that _sometimes_ makes sense is to take the maximum (or minimum) value along the axes. So, for example,
contour3(X(:,:,1), Y(:,:,1), max(C,[],3), 100)
Bastion
2011 年 9 月 12 日
Bastion
2011 年 9 月 12 日
Walter Roberson
2011 年 9 月 12 日
At the command window, put in the command
dbstop if error
and then run the program. It will stop at the line that is causing the problem and tell you the kind of problem it is encountering. You can examine the variable sizes and classes and values to try to determine the source of the problem.
It is difficult for us to debug problems without knowing which line was the problem and what the error message was.
Walter Roberson
2011 年 9 月 12 日
I used Xmax and Ymax and Zmax all equal, with code I showed above that ends in the contour3 call. It seemed to work fine considering the limitations of having to project C down to 3D.
I also used
scatter3(X(:),Y(:),Z(:),10,C(:))
colormap(hsv)
and that produced something somewhat intelligible, though not contoured.
The biggest problems with the two tests above was that the mesh was too coarse to produce a good-looking plot over the range -5:+5 .
I refined the mesh to steps of 1/64 . That slowed things down a fair bit, matrix sizes 641 x 641 x 641
I then
Cmin = min(C(:));
Cmax = max(C(:));
[n,bin] = histc(C(:),linspace(Cmin,Cmax,11));
scatter3(X(:),Y(:),Z(:),10,bin)
Plotting with those array sizes was notably slow. The above is akin to doing a contour plot with (11-1) = 10 levels (the 11th level will exist in there but will be only the 4 peaks of the symmetric C calculation.) Did I mention this was notably slow? :( A few hundred million points to plot... Guess I might as well go sign in the after-hours log while I am waiting for it to finish...
Walter Roberson
2011 年 9 月 13 日
The above was just too slow with the grid step of 1/64 over -5:+5 .
Referring to the above variables, I then used
u = unique(round(rand(1,floor(length(bin)/1000))*length(bin)));
scatter3(X(u),Y(u),Z(u),10,bin(u))
That was still somewhat slow but at least it could be worked with. It did not produce surfaces as would be hoped for contours, but it was still useful in showing the different value levels (several simultaneously)
I also used
p = patch(isosurface(X,Y,Z,C,100));
set(p, 'FaceColor', 'red', 'EdgeColor', 'none');
daspect([1 1 1])
view(3)
camlight; lighting phong
That was a fairly reasonable time-frame and produced smooth surfaces for the one value level (100) that had been specified.
The examples in isosurface() show calls to isonormal() . That took at notable time and then failed trying to interp3. My speculation is that it ran out of memory or something similar, though the complaint it gave was that the coordinates had not been produced by meshgrid (producing them by ndgrid should have done fine.)
Bastion
2011 年 9 月 13 日
Bastion
2011 年 9 月 13 日
Walter Roberson
2011 年 9 月 13 日
I'm not sure you would want to use both scatter3() and patch(), but it might make sense to do so if you had a particular level you needed emphasized (via the patch) and wanted to get an idea of how the others were distributed (via the scatter3).
The scatter3() part was much slower than the construction of the isosurface, so if the isosurface gives you what you need, you will probably want to skip the scatter3()
Hmmm, you might want to add a max() of the floor(length(bin)/1000) and some minimum number of points, in case the initial size of the mesh is very small -- you don't want to end up with u being empty or only having 1 point for example.
Walter Roberson
2011 年 9 月 13 日
The 1 in 1000 sampling I did in constructing u was related to when I was using 1/64 as the step size instead of the 1/4 that you originally coded; depending on the input ranges you specified, the 1 in 1000 random sampling might have been too small to be useful.
Bastion
2011 年 9 月 13 日
Bastion
2011 年 9 月 13 日
Walter Roberson
2011 年 9 月 13 日
Could you suggests test values for each of the parameters?
Bastion
2011 年 9 月 16 日
Walter Roberson
2011 年 9 月 16 日
Looks to me like you would get a divide by zero error if any of the Dx, Dy, or Dz were zero, and that you would get a complex result if an odd number of them were negative or if t is negative.
Question: does 3.14 represent Pi ?
Bastion
2011 年 9 月 17 日
Walter Roberson
2011 年 9 月 20 日
The MATLAB notation for pi is pi
Test values would help so that I do not end up looking at a different oddity than you are looking at.
Bastion
2011 年 9 月 22 日
Sean de Wolski
2011 年 9 月 12 日
An isosurface with different colored and shaded patch es can be used to visualize 4d data.
doc isosurface
doc patch
Basma M
2015 年 6 月 10 日
0 投票
hi Bastion, i was wondering if you ever knew the correct code for this problem. i am very much interested in the solution you came up with cuz i need to solve the same equation but having difficulties doing so. I would really appreciate your feedback on this, it is somewhat urgent and i've already spent too much time and effort trying to work it out. THANKS
カテゴリ
ヘルプ センター および File Exchange で Surface and Mesh Plots についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!