Tagged Questions
Maxima is opensource Computer Algebra System with complete programming language, based on legendary Macsyma
10
votes
4answers
6k views
How can I find local maxima in an image in MATLAB?
I have an image in MATLAB:
y = rgb2gray(imread('some_image_file.jpg'));
and I want to do some processing on it:
pic = some_processing(y);
and find the local maxima of the output. That is, all ...
9
votes
2answers
463 views
C# - Finding Local Maxima Over a Dynamic Range
Working in C#, I need to find all local peaks in a List of doubles and return them as another List doubles. This seems simple enough if I have a set number of values I'm comparing in any given ...
4
votes
4answers
96 views
Key to maxima of dictionary in python
I have a dictionary, "scores", of integers and I want to find the key(s) of the highest value. I used this code:
key = max(scores, key=scores.get)
however, this only gives back one key. How does ...
4
votes
1answer
450 views
Identify important minima and maxima in time-series w/ Mathematica
I need a way to identify local minima and maxima in time series data with Mathematica. This seems like it should be an easy thing to do, but it gets tricky. I posted this on the MathForum, but ...
3
votes
3answers
393 views
Maxima crashes on relatively simple integral
I'm trying to Maxima-fy my Mathematica box options formula
(https://github.com/barrycarter/bcapps/blob/master/box-option-value.m)
but Maxima crashes on a fairly simple integration:
load(distrib);
...
3
votes
1answer
76 views
How can I evaluate an integration to a number?
I have some functions set up like this:
f(x):=1-2**-x$
g(y):=integrate(f(x), x, 0, y)$
and evaluated them:
f(1)$float(%);
g(1)$float(%);
but for g(1), I got a symbolic answer instead of a ...
3
votes
4answers
862 views
Algorithmically get Amplitude and Phase of Sine wave?
I'm trying to figure out a way to algorithmically get the amplitude and phase of a function that has sinusoidal terms in the Maxima computer algebra system. This only applies to steady state (as t -> ...
2
votes
1answer
92 views
Get new contents of a file
A node.js script calls the maxima computer algebra system and redirects my input to the stdin of maxima. Maxima the writes the processed input to a temporary text file where there is a new line for ...
2
votes
1answer
39 views
Maxima: Using makeset with a given set
Using the computer algebra system Maxima I try to do a very simple set operation: given a set A of sets and a set a, I'd like to build the set of the union of all elements of A and a.
So for example ...
2
votes
1answer
70 views
How to define some variables as non-commutative in Maxima
For example, I'd like to define x and y as non-commutative, and a and b as commutative (as usual). In other words,
x y ≠ y x, a x = x a, a b = b a .
Further,
(x + a y) (x - a y) = x^2 + a (y x ...
2
votes
2answers
1k views
Find local maxima in grayscale image using OpenCV
Does anybody know how to find the local maxima in a grayscale IPL_DEPTH_8U image using OpenCV? HarrisCorner mentions something like that but I'm actually not interested in corners ...
Thanks!
2
votes
1answer
316 views
Using Maxima, I want to solve equations using bit-shifts operations
First, I've tried the stuff you get using "load(functs)", no thank you.
I have some pretty complex equations that I'd like to evaluate in Maxima. But at one step in the process I split a register in ...
2
votes
3answers
530 views
Genetic/Evolutionary algorithms and local minima/maxima problem
I have run across several posts and articles that suggests using things like simulated annealing to avoid the local minima/maxima problem.
I don't understand why this would be necessary if you ...
1
vote
0answers
33 views
Matlab algorithm/workflow need fixing
So during work i need to analyise video's like this one
http://youtu.be/TxBdkLcO5Do of a beating cells.
So i wrote a matlab code that plot a graph of changes in picture over time..
example of data ...
1
vote
1answer
31 views
Maxima: convert matrix to list
I convert list to matrix in Maxima in following way:
DataL : [ [1,2], [2,4], [3,6], [4,8] ];
DataM: apply('matrix,DataL);
How to do it the other way ? How to convert given matrix DataM into list ...
1
vote
2answers
108 views
How to use Maxima's diff in function definition?
I want to use a function's derivative in an other function. How should this be done in Maxima?
E.g:
f(x) := 2*x^4;
g(x) := diff(f(x),x)-8;
Now g(x) yields 8x^3-8 as expected, but g(0) gives an ...
1
vote
0answers
47 views
maxima: solving a set of equations
I'm trying to solve a set of symbolic equations in maxima.
I'm using "algsys" comand, and it works, but the answer is depended on "%r1".
I dont understand what %r1 is, and how can I get a explicit ...
1
vote
1answer
70 views
Maxima: Simplify matrix components
in Maxima, how is it possible to simply equations that are components of a matrix? I have a rather big matrix and want to simplify the components of it (e.g. factor out and cancel out).
Thanks.
1
vote
1answer
29 views
Maxima: How to type a term of a complicated series
How do you type the following general term of a series in Maxima ?
1
vote
1answer
64 views
Maxima asks: “positive, negative, zero ?” How to see all at once
Maxima often asks positive, negative, zero ? while solving ODE. Is there a way to see all of them at once ?
1
vote
1answer
159 views
Maxima 2D plot — How to set axes equal
For example, what is a code for plotting y = x so that y- and x-axis have the same scale ?
1
vote
1answer
61 views
symbolically replace expressions in maxima
I'm having trouble finding out how to do this:
x=a+b
y=c+d
z=x*y
I would like the output to be
z=ac+ad+bc+bd
not
z=xy
1
vote
1answer
266 views
C# - Finding Peaks within a Given Width via Quadratic Fit
I'm working on an algorithm to find peaks in a List object. I'd thought up what I thought was a good (or good enough) algorithm for doing this by looking at a point and it's neighbors and, if it was a ...
1
vote
2answers
384 views
Computation of numerical integral involving convolution
I have to solve the following convolution related numerical integration problem in R or perhaps computer algebra system like Maxima.
Integral[({k(y)-l(y)}^2)dy]
where
k(.) is the pdf of a standard ...
1
vote
3answers
220 views
how to integrate / link R and Computer Algebra Systems (CAS)
I'm looking for a possibility to use different 'higher' math operations in combination with R. A link or integration between R and a CAS would be the perfect solution.
Which integration of R and ...
1
vote
1answer
357 views
image processing toolbox in matlab
I've got a specific question and a related more general one... Why does imextendedmax() not give for example 9 in A(3,3) as a max? Generally... what is the best way for finding multiple maxes/peaks? ...
0
votes
1answer
17 views
Differentiating sums with Maxima
I have the following sum:
sum((R[i]-(a*X[i]+b)*t + 1/2*(c*X[i]+d)^2*t)^2/((c*X[i]+d)^2*t), i, 1, N);
which I want to differenciate wrt. a:
diff(%, a);
but Maxima (wxMaxima to be precise) just ...
0
votes
1answer
71 views
maxima's ode solver
I downloaded and installed sage because I needed an ODE solver.I think that Maxima is relatively restricted in that part as it doesn't seem to solve almost basic ODEs.I appreciate all the effort ...
0
votes
3answers
92 views
Why does this code causes the machine to crash?
I am trying to run this code but it keeps crashing:
log10(x):=log(x)/log(10);
char(x):=floor(log10(x))+1;
mantissa(x):=x/10**char(x);
chop(x,d):=(10**char(x))*(floor(mantissa(x)*(10**d))/(10**d));
...
0
votes
2answers
41 views
How to prevent Maxima tex1 from wrapping its output?
I invoked Maxima tex1 from within a batch script as follows:
maxima --very-quiet -r "tex1(solve(8*x^2+7*x+5));" | grep -v false > output.txt
and I got the output.txt as follows:
\left[ ...
0
votes
1answer
26 views
How to remove TeX displayed equation markups from the output of Maxima tex?
How to remove all $ signs from the output of, e.g., tex(x^2-5*x+6); ?
This question is more related to Maxima so I post it here.
0
votes
2answers
152 views
maxima CAS: float rat replaced
in Maxima I do:
(%i1) 1.4*28;
(%o1) 39.2
(%i2) is(1.4*28=39.2);
(%o2) false
This is strange to me, but probably has to do with rat replace?
Is there a way to let maxima return 'true' to the ...
0
votes
1answer
176 views
Access to i and j variables in Maxima's matrixmap?
I'm still a maxima newbie so bear with me. I am trying to write my own formula for calculating the adjoint of a matrix (I know maxima already has one built-in, but I was trying my own as a learning ...
0
votes
1answer
405 views
Using Maxima's linsolve( ) — problem passing arrays to linsolve( )
I'm trying to use linsolve( ) from within a subroutine in order to code up a solution algorithm that is independent of the dimension of the problem.
The desire is to dynamically allocate the equation ...
0
votes
2answers
218 views
Solution to overdetermined systems
How to find solution to overdetermined systems in Macsyma, Scilab, Octave?
-2
votes
1answer
121 views
Maxima and Minima Point of a Curve in Python
I have a captured a data from a displacement sensor, the delta values for one iteration look like this. 0, 1, 2, 4, 7, 9, 14, 24, 14, 10, 9, 7, 3 2, 1, 0, 0, 0, 0, -1, -3, -5, -7, -9, -14, -24, -14, ...