0
votes
0answers
7 views

Mathematica 3-D plot (discrete/continous) [migrated]

I want to visualize a 3-D function in Mathematica, Say F(x,y,z)=0, But there is a small difference here with typical z=f(x,y). Because of it's complexity, I decide to consider the z parameter as a ...
1
vote
1answer
106 views

Plotting mathematica data with python

This question is related to my previous question on "publication quality plots in python". I am trying to write a post processor (a bash script/python combo) that would comb through the thousands ...
1
vote
2answers
133 views

Python Pylab pcolor options for publication quality plots

I am trying to make DFT (discrete fourier transforms) plots using pcolor in python. I have previously been using Mathematica 8.0 to do this but I find that the colorbar in mathematica 8.0 has bad ...
1
vote
0answers
52 views

visualize decision surface of neural network

Where can I find a program that visualizes (ie, plots) the decision boundary surface of a 2-layer feed-forward neural network? With 1 layer the decision surface is just a bunch of straight lines. ...
0
votes
2answers
67 views

Plot different entries of a table with different colors in Mathematica

In Mathematica, I have a table in which each entry of the table is a curve in 3 dimensions. I want to assign different colors to different curves, but I don't know how to do it. My current command ...
1
vote
1answer
204 views

Vector plot of 2d functions in mathematica

I am trying to plot 1/r (r-hat) using VectorPlot in Mathematica by decomposing r-hat into x-hat and y-hat. I am using: [Chi][x_, y_] := Sqrt[x^2 + y^2] [Phi][x_, y_] := ArcTan[y/x] and then ...
3
votes
1answer
119 views

Animate the movement of a point along the plot of a specific solution obtained using ParametricPlot3D

We have the system: x'[t] == x[t] - 5 y[t] + z[t] y'[t] == 3 x[t] - 3 y[t] - 3 z[t] z'[t] == -2 x[t] + 10 y[t] + 4 z[t] and the initial conditions: x[0] == .01 y[0] == 3 z[0] == 0 I produced ...
0
votes
1answer
191 views

Mathematica parametric equations and list plot

x = e^1/2*Cos((pi/4)t) + Cos(2Pi*t) y = e^1/3*1/2Sin(pi*t) + sin(2pi * t) t E [a,b] where 'a' and 'b' are inputted via input. How can I draw where 't' is in the moments t = a, a+1, a+2, ..., b.
3
votes
1answer
164 views

Add gridlines to a output plot in Mathemaitca

I'm trying to add gridlines to a output density plot in Mathematica. The plot is generated by a long calculation in Mathematica and when I do the plot I forget to add the Mesh->True options. I don't ...
2
votes
0answers
117 views

using mathematica for plotting in C#

I want to plot some graphics for my course project via Mathematica. There is code from the project: try { toCompute = @"Show[RegionPlot[-2 <= x1 && x1 <= 2 ...
1
vote
1answer
80 views

Mathematica - Plotting the output of a function created directly from solve

I've got some fairly long matrix algebra that I am trying to plot the outcome of. Nothing seems to show up on the axes, and I can't quite tell where the problem is. I successfully created a function ...
0
votes
2answers
178 views

Mathematica: change all text fonts simultaneosly in Plot or Listplot

I would like to change the font size of all texts in Plot and ListPlot with one command. I remember doing this in the past with a single SetOptions[Plot, ...] call for each (ListPlot and Plot), but ...
-1
votes
1answer
115 views

Mathematica: How to plot several lines of a matrix in the same graph vertically

I created an array named Theta with 100 lines and 400 columns. Each entry is a number. What I want to do is a graph that plots 0.01 vs every number in line 1 0.02 vs every number in line 2 ... 1 ...
1
vote
0answers
152 views

Numerical Solving of Differential Equations [closed]

I am trying to solve a differential equation numerically using shooting method but the plot of solution does not look correct! It is not smooth and it has some break points specially in first steps. ...
3
votes
2answers
172 views

Mathematica: Plotting a module with FindRoot in it

I run into this problem occasionally, and I haven't found a way around it. It usually happens when I'm finding the root of an equation, and want to maximize/minimize/plot that root according to some ...
4
votes
1answer
89 views

How can I change the edge line color when using the 'fill' function in Mathematica?

When using the filling function in Mathematica, I would like to change the style of the edge line in a way that it has a) the same color like the filling/no edge line b)it will be below/covered by ...
0
votes
1answer
326 views

Plotlegend in Mathematica does not work for a table of functions

I am trying to plot a list of functions with a legend using PlotLegend in Mathematica v8. As a simple test illustrating what I'm trying to do. <<PlotLegends` test = Table[f[x], {f, {Sin, Cos, ...
1
vote
1answer
78 views

Motorsport Lap Chart Revisited

This is my first time posting so I apologize if asking a new question based on a pre-exisitng one is bad form. I am trying to create a "lap chart" similar to the one presented here: Motorsport Lap ...
1
vote
2answers
142 views

Reading data from .raw file in Mathematica

I'm trying plot graphs using .raw files containing sets of y coordinates in Mathematica. I'm unsure what to type to actually refer to the data in the files directly - I'm currently using 'data' and am ...
0
votes
3answers
408 views

I would like to add gaussian noise for each x value of my sample data and then plot

I am having some problems in plotting this. Everything is ok until the plot statement where nothing plots. Can someone please help me so that it can plot something. The following is my code: j = 10; ...
0
votes
1answer
182 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 ...
-2
votes
1answer
324 views

Parametric plot of a cone in Mathematica

i have a cone, which is described as in the figure: (two bases are ellipses) How can i plot the surface by Mathematica?
0
votes
1answer
666 views

Problems with Mathematica Plotting using Piecewise

I am trying to plot using piecewise in one of my problems and I have two variables: x and psi. However, the respective functions are only valid for a defined range of "x" and the psi range is the ...
0
votes
1answer
115 views

Graphing the result of NSolve

I'm trying to plot a parametric equation that was partially obtained using NSolve. Here's my attempted code: VolumeDiff[v_] = 1.7 - v SolveR[ v_] = Re[NSolve[16 v^2 - 16 v*(r^3) + 3 (r^2) + 1 == 0, ...
0
votes
3answers
222 views

Mathematica - plotting an array with values and exponential function

I have a question about mathematica. I have an array with values called tempDep: ...
1
vote
1answer
191 views

Mathematica: Use Piecewise instead of If

I have this periodic defined function via "If": T = 1; Tt[t_] := Quotient[t, T]*T f[t_] := If[t >= Tt[t] && t < ((Tt[t] + T/2)), 1, -1] I need to redefinie it with "Piecewise". My ...
1
vote
1answer
236 views

ColorFunction and Blend with respect to ListDensityPlot in Mathematica

I am trying to plot a series of data corresponding to (x,y) positions using ListDensityPlot in Mathematica 7. mydata is a list of data triplets {x,y,f}, where f is a real number between -4.5 and +4.5 ...
3
votes
1answer
395 views

Adding a Legend to a semilog plot in Mathematica

I am having trouble with the plotting functions in Mathematica. I am attempting to plot several lists of data on a semilog plot, and then add a legend. The plot is fine: Show[ListLogPlot[bead31, ...
1
vote
1answer
449 views

How to stop axis from resizing

I plotted a line with this code: Manipulate[Plot[y = m (x - a) + b, {x, -10, 10}], {m, -10, 10}, {a, -10, 10}, {b, -10, 10}] When I change the m (slope of the line) with the slider the axis get's ...
0
votes
1answer
131 views

Disk inside plot in mathematica

I have a question about using plot and disk together in one manipulate function in mathematica. I have this piece of code right now: Plot[h[t], {t, 0, ttot}, PlotRange -> {0, 30}] Manipulate[ ...
2
votes
3answers
861 views

Wolfram Mathematica: y-axis frame labels are not aligned

I'm producing a double panel figure in Mathematica. The Bottom panel has negative values on the y-axis and this causes the label on that axis, produced using FrameLabel, to be aligned a bit more to ...
0
votes
2answers
279 views

Transform(align) a plane plot into a 3D plot in Mathematica

I have an ODE and I solve it with NDSolve, then I plot the solution on a simplex in 2D. Then I need to transform (align or just plot) this simplex in 3D at coordinates (1,0,0),(0,1,0),(0,0,1), so ...
1
vote
2answers
416 views

How can I plot a list returned by the mathematica solution to in bounded integer equations

So I have a set of bounded diophantine equations that specify lines on the plane. I want to make mathematica plot the intersection of two of these equations so I can see what they look like. So far ...
7
votes
2answers
4k views

How do I plot a slope field using mathematica?

I am trying to plot slope fields of some differential equations using mathematica but can't figure it out. Say I have the equation y' = y(t) y(t) = C * E^t How do I plot the slope field? ...
1
vote
3answers
1k views

Mathematica Manipulate Plot: Scaling Axes

Say I have set up the following function f[a,b,c] which I wish to plot while varying a and b f[a_,b_,c_]:=a b c Exp[a b] Manipulate[ Plot [ f[a,b,c], {c,0,1}, PlotRange->{{0,0.05},Automatic} ], ...
2
votes
1answer
574 views

Mathematica How do I plot a vector field with 1 variable?

I cannot figure out how to plot a vector field with only 1 variable. Maybe Mathematica doesn't support this. For example: r(t) = cost j + sint i same as <cost, sint> This doesn't work: ...
4
votes
2answers
192 views

How do I get rid of gray boundaries for ArrayPlot in Mathematica?

I have the following plot. lst={{1, 1, 1, 1, 1, 1, 1, 1, 1}, {1, 0, 0, 0, 0, 0, 0, 0, 1}, {1, 0, 0, 0, 0, 0, 0, 0, 1}, {1, 0, 0, 0, 0, 0, 0, 0, 1}, {1, 0, 0, 0, 0, 0, 0, 0, 1}, {1, 0, 0, 0, 0, ...
2
votes
1answer
337 views

ListLinePlot function in mathematica

I wish to plot a vector with the help of ListLinePlot function in mathematica. I want to change the scale of the Y axis in it. I cannot find a way in the documentation. The vector that I wish to plot ...
8
votes
3answers
899 views

Individual point coloring in ListPlot, ErrorListPlot in Mathematica

I can get a colored ListLinePlot by doing something like ListLinePlot[Range[420, 680, 20], ColorFunction -> "VisibleSpectrum", ColorFunctionScaling -> False] However, as indicated by the ...
8
votes
4answers
1k views

Filling Styles using a single Plot in Mathematica

Could I specify different filling colors for within a single plot like the bellow or would I need to "Show" several Plots ? Let`s say I would like the filling style to be the same as the PlotStyle. ...
4
votes
2answers
212 views

Plot line goes under the X-axis - fix?

Why when I input the command Plot[E^(-x), {x, 0, 2}] in Mathematica 8 the point (2, e^(-2)) goes under the X-axis? How can I fix that?
3
votes
3answers
235 views

Mathematica: dynamic number of menus

I am trying to make a dynamic number of drop-down menus in a plot, to plot a various number of curves. I have previously requested help to plot this data, and it worked well. First thing ...
4
votes
2answers
192 views

PlotMarkers disappear when plotting exactly two polylines in Mathematica?

Not sure if this is a MMA bug or me doing something wrong. Consider the following function: plotTrace[points_] := ListPlot[points, Joined -> True, PlotMarkers -> Table[i, {i, ...
5
votes
3answers
461 views

Mathematica dynamic to plot matrix data

I am trying to dynamically plot data contained in a matrix with Mathematica 7. The data is contained in it like this, obtained via a chemical model. [year H He Li C ... C8H14+,Grain- ...
7
votes
4answers
287 views

Increasing the speed of (or an alternative to) RegionPlot

I want to include the some region plots in a Manipulate structure, however the rendering is almost prohibitively slow. The code is ClearAll[regions, rplot] r:regions[n_Integer, o_Integer] := r = ...
3
votes
2answers
261 views

Mathematica, FrameTicks inconsistency across different kinds of plots

I came across some unexpected inconsistencies when further developing the solution to an earlier question: How can I show % values on the y axis of a plot? This seemed different enough to merit a ...
7
votes
4answers
343 views

How can I show % values on the y axis of a plot?

In any Mathematica chart or plot how can I show % values on the y axis? I may have data like this: data = {{{2010, 8, 3}, 0.}, {{2010, 8, 31}, -0.052208}, {{2010, 9, 30}, 0.008221}, {{2010, 10, ...
4
votes
3answers
814 views

Combining Plots in Mathematica is not giving the expected result

I'm trying to combine 3 functions graphed on a Plot[] and 1 function graphed on a ParametricPlot[]. My equations are as follows: plota = Plot[{-2 x, -2 Sqrt[x], -2 x^(3/5)}, {x, 0, 1}, PlotLegend ...
4
votes
2answers
343 views

Coloring plot in Mathematica according to labels

I have a dataset with labels which I would like to plot with points colored according to their label. Is there a simple way how to get current line numer inside plot, so that I can determine which ...
11
votes
4answers
1k views

Exponential form of tick marks for log plot in Mathematica

In an attempt to learn more Mathematica, I am trying to reproduce the tick marks on this log (log) plot: This is as close as I can get: LogLogPlot[Log[x!], {x, 1, 10^5}, PlotRange -> {{0, 10^5}, ...

1 2 3