Wolfram Mathematica is a computer algebra system and programming language from Wolfram Research. Ask your Mathematica questions at http://mathematica.stackexchange.com/

learn more… | top users | synonyms (3)

0
votes
1answer
59 views

Differentiating tuple valued functions in mathematica

How does one create and perform differentiation on tuple valued functions in Mathematica. More specifically, I have the following functions, where R denotes the real line f:R^2 -> R^3 g:R^3 ...
3
votes
2answers
200 views

Mathematica/CUDA reduce execution time

I'm writing a simple monte carlo simulation for particle transport. My approach is writing a kernel for CUDA and execute it as a Mathematica function. Kernel: #include "curand_kernel.h" #include ...
2
votes
1answer
240 views

Why does my Applescript run in the Terminal using osascript on Snow Leopard but not on Lion?

I have the following Applescript which runs fine from the applescript editor in both Snow Leopard and Lion. I can also run it using osascript via terminal on Snow Leopard but not on Lion. The code is ...
0
votes
2answers
120 views

Populating array in mathematica

I have a set of around 500 (x,y,z) real values. Since I will need to bin the values based on their (x,y) coordinates, I stripped the z values and stored in on a seperate list. I am left with only the ...
1
vote
1answer
235 views

Mathematica code to draw a graph of this differential equation?

Does anyone know the Mathematica code that will trace the graph below? Here is the equation for the graph, a second order linear differential equation with constant coefficients: Here is the graph ...
1
vote
2answers
98 views

Importing data into Mathematica in the form of a matrix

I have a file which, when I import into Mathematica, looks like this: {{1,1,n1},{1,2,n2},{1,3,n3},{2,1,n4},{2,2,n5},{2,3,n6}} where n1...n6 are some numbers that I want to import as a matrix that ...
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 ...
0
votes
1answer
54 views

Mathematica: inverse IntegerDigits with FromDigits

Using IntegerDigits and ToCharacterCode I convert a String a 2D Table of binary. Now I need to reverse this and all the Mathematica Help claims that FromDigits is the inverse of IntegerDigits. Yet I ...
0
votes
3answers
84 views

How to plot this function?

I am trying to plot the region $x^{p}+y^{p}\le 1$ in the xy-plane. But when I ran commands like this: RegionPlot[x^0.7 + y^0.7 <= 1, {x, -500, 500}, {y, -500, 500}] I always encounter error ...
5
votes
1answer
104 views

Generate all (0,1) nxn matrices

While working on a problem related to Weisstein's Conjecture (https://cs.uwaterloo.ca/journals/JIS/VOL7/Sloane/sloane15.pdf), I needed to generate all n x n (0,1) matrices for n = 2, 3, 4,... It is ...
-4
votes
1answer
38 views

patters of mathematica [closed]

My question is concerning patterns in Mathematica, for example if I have the following list char = {"bat", "equation", "hair" Index "," more "," one "," via "," to "," e "}; and I find the words that ...
1
vote
2answers
96 views

Derivative of series in mathematica

I have an equation like: y= Sum[ i x[i] , {i,10}] and I want to calculate the derivative : D[y,x[i]] -> = i How can I do that in mathematica ? I can do D[y, x[3]] and it gives me 3 but ...
-1
votes
1answer
104 views

Mathematica Manipulate Function

Does anybody know how I can use the Manipulate command with the show command. Basically, I want to display multiple funcitons on one coordinate system. However, I want only one of them to be ...
1
vote
0answers
37 views

How to display more digits in Mathematica? [duplicate]

Possible Duplicate: Mathematica output formatting The number 16744.036 outputs as 16744. which looks strange. This N[16744.036, 20] is also displayed as 16744. I don't know ...
1
vote
2answers
126 views

linear combination of curves to match a single curve

I have a set of vectors (length of 50, essentially a set of curves) that i want to try to match another single curve(vector) and obtain the coefficients of each of the vectors in the first set to ...
3
votes
4answers
421 views

How to construct a list of all Fibonacci numbers less than n in Mathematica

I would like to write a Mathematica function that constructs a list of all Fibonacci numbers less than n. Moreover, I would like to do this as elegantly and functionally as possible(so without an ...
0
votes
1answer
94 views

Mathematica Debug

Just curious how Mathematica users debug their code when encounter run-time errors. I feel Mathematica is so powerful that most programming tasks can be replaced with it but when it has bugs the ...
0
votes
3answers
279 views

how to find cryptarithmetic letter value?

Cross + roads = danger ==> the answer is ==> 96233 + 62513=158746 I'm looking for a instruction to find the answer easier for another example. one of my teacher said that we can using tree to find ...
7
votes
1answer
170 views

smallest integer not obtainable from {2,3,4,5,6,7,8} (Mathematica)

I'm trying to solve the following problem using Mathematica: What is the smallest positive integer not obtainable from the set {2,3,4,5,6,7,8} via arithmetic operations {+,-,*,/}, exponentiation, and ...
4
votes
0answers
92 views

Mathematica: how can I model RC and get the R and C value from CSV

I hope some one can help me. I have a CSV file with voltage Response and current step values. I have to make a RC model in mathematica and find the R and C value. How can I model the RC in ...
1
vote
1answer
78 views

Non-uniform axis ticks using Show [p1, p2, PlotRange -> All] in Mathematica 8

I am trying show a series of plots in the same figure using Mathematica 8 with Show[p1, p2, PlotRange -> All], but the y axis label (ranging from log 0.5 to log 1.5) appears non-uniform. How can I ...
5
votes
3answers
199 views

Derive Text, Images, and LaTeX Equations from Websites

Would it be possible to derive the text, images, and LaTeX equations from a particular website so that you can directly customize your own PDF without having the objects blurry? Only the image will ...
3
votes
0answers
153 views

Force scientific notation in tick labels of Plot in mathematica

I am trying to scientific-format tick labels on a my Plot which is somehow a frame. By searching Mathgroup archives, it looks like the usual way to mess with tick labels is to extract them using ...
3
votes
3answers
70 views

How to apply function to a list in incremental manner?

Having a list of {a, b, c, d} and a function f I wish to get a list {f[a], f[a,b], f[a,b,c], f[a,b,c,d]} What is the simplest way to do this?
0
votes
0answers
81 views

Make graph with intersecting edges [closed]

I want to list vertices: $x_{1} , x_{2} , x_{3} , \ldots , x_{n+1}$ and produce a graph with edges: $x_{1}x_{2} , x_{2}x_{3} , \ldots , x_{n}x_{1} $ where I am able to input whether or not edges ...
1
vote
1answer
196 views

Project Euler # 23 Mathematica

I am solving Problem 23 of Project Euler using Mathematica: Find the sum of all positive integers that cannot be written as the sum of two abundant numbers. Recall that an abundant number # is ...
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 ...
2
votes
1answer
165 views

3D Scatter Plots: Changing point size for each series

I have a ListPointPlot3D containing four series of data. I would like to be able to define the size, shape and colour of these series individually. Changing the size and colour is crucial, the shape ...
1
vote
1answer
58 views

integrating over the solutions of an implicit equation

I have an implicit equation in Mathematica, which I solve by using NSolve. Now, I need to weigh the various solutions according to a Gaussian, but I can't quite make it work. Here is my suggestion so ...
3
votes
3answers
99 views

How to check for equality element-wise for two vectors?

I have two vectors that I need to check element wise for equality and return the total number of elements that are equal. So comparing a = {1,0,1} and b = {1,0,0} would return 2. The example below ...
5
votes
3answers
228 views

Clip values between a minimum and maximum allowed value in R

In Mathematica there is the command Clip[x, {min, max}] which gives x for min<=x<=max, min for x<min and and max for x>max, see http://reference.wolfram.com/mathematica/ref/Clip.html ...
0
votes
1answer
59 views

Set::write: Error When Creating Function

I'm very new to Mathematica, and I'm getting pretty frustrated with the errors I'm generating when it comes to creating a function. Below, I have a function I'm writing for 'centering' a matrix where ...
3
votes
1answer
101 views

Plotting NDSolve inside Manipulate

I have the following working Mathematica code: ODENInit[n_, xIni_] := Join[{x[1][0] == xIni}, Table[x[i][0] == 0, {i, 2, n}]] ODEN[n_] := Join[{x[1]'[t] == k1 - k2 x[1][t]}, ...
1
vote
1answer
52 views

NIntegrate evaluates a clearly non-zero integral to be zero. The integrand is a set of data points morphed into a distribution

I have a list of data points that are to represent a probability distribution. I need to integrate over this distribution. However since I didn't have a function and I only had a set of data points, I ...
1
vote
2answers
77 views

Mathematica Nested Anonymous Variable Arity Functions

I'm trying to translate the following scheme code into Mathematica (version 8, if that matters): (define (((lift g) . fs) . args) (apply g (map (lambda (f) (apply f args)) ...
2
votes
1answer
104 views

Why does mathematica kernel crash when I access my linked list?

I'm using mathematica 7, and I'm trying to use a singly linked list (~50,000 elements) to avoid using AppendTo in a dynamic list to increase speed. In this test, I can create a list of 10 elements as ...
4
votes
1answer
113 views

Mathematica's Integrate just spits out the input…Does not solve Integral

Just looking for some mathematica help. When I try to computer this integral: Integrate[Cos[t]/(1 + b^2 t^2 - (2*b*c*t)/a + c^2/a^2)^(3/2), { t, -Infinity, Infinity}, Assumptions -> {a, b, c} ...
0
votes
2answers
102 views

Mathematica Index Equation (basic algebra)

I am currently working on a Mathematica project to calculate Riemann's sums and put them in a table. I am having trouble printing the row numbers (intervals). (The row numbers are also parameters to ...
1
vote
0answers
96 views

WSDL w. complex types and Mathematica 8

i'm trying to get Mathematica 8 to make use of a webservice i set up. However it refuses to and throws following error: InstallService::typeschema: "The type schema cannot be found for ...
2
votes
0answers
240 views

Solve an integral equation in Mathematica

Dear Mathematica Users, I am a physics student (not very skilled with Mathematica) and I have to solve an integral equation. Below is a sketch of my attempt: iterstepGap := (valuesgap = Table[ ...
1
vote
1answer
63 views

Rendering Graphs

Is there a way to colour region bounded by edges with GRAPH in mathematica. Like if three vertices form a triangle, I want to colour the are of triangle with GRAPH option.
2
votes
2answers
59 views

How do I import a .dat file as a matrix in Mathematica?

I have a .dat file consisting of a string of numbers 1 to 9 that looks like this: 1 2 3 4 5 6 7 8 9 How do I import the data into mathematica so that it has the form ...
3
votes
2answers
121 views

Mathematica - List of initialized variables

I want to make a list of variables that would be initialized and accessible. After that kind of code: abc = {a, b, c} {a, b, c} = {0, 0, 0} abc[[1]] = 1 In other way I'd like create a list of ...
4
votes
1answer
126 views

Wrap text selection in brackets in Mathematica

Is there a way to select some text in a Mathematica notebook and then wrap the selection in brackets? For example, if I typed the following in a notebook: 1, 2, 3, 4 I want to be able to select ...
4
votes
1answer
117 views

Specifying sequence of colors in ListPlot

I am trying to figure out how to use Mathematica's color schemes with discrete data. For example, I have a list of time series in the form s={{{1946,1},{1947,2},{1948,3}},{{1946,-2},{1947,-1.8}}} ...
2
votes
3answers
173 views

Mathematica: Plot the derivative of a piecewise function

I'm trying to plot the derivative of a mollifier function in Mathematica. It differentiates the function OK, and can plot the function using %, but I would like to be able to plot by assigning the ...
0
votes
2answers
191 views

Mathematical Issue: Triangle, Pyramid, Rotation, Translation, Zoom

Another tricky question. What you can see here is my physical pyramid built with 3 leds which form a triangle in 1 plane and another led in the mid center, about 18mm above the other 3. The 4th one ...
3
votes
3answers
178 views

Nested WHILE loops not acting as expected - Javascript / Google Apps Script

I've got a function that isn't acting as intended. Before I continue, I'd like preface this with the fact that I normally program in Mathematica and have been tasked with porting over a Mathematica ...
-2
votes
1answer
112 views

Interpolation with mathematica

I have a list of 69 point X= {x1,x2,....x69}. How i can interpolate the points and create a new list X1 from the interpolation of the curve but with 2059 point? Can i Interpolate the points, than ...
-2
votes
1answer
63 views

equivalence of equations [closed]

A reviewer of a paper I submitted to a scientific journal insists that my function f1[b_, c_, t_] := 1 - E^((c - t)/b)/2 is "mathematically equivalent" to the function f2[b0_, b1_, t_] := 1 - b0 ...

1 3 4 5 6 7 51