Questions tagged [minima]

Minima is a one-size-fits-all Jekyll theme. https://github.com/jekyll/minima

55 questions
0
votes
1 answer

Add href to description in _config.yml

How can I add a link to my description: in _config.yml? I tried using ... description: > # ignore newlines until "baseurl:" Ogulcan Girginc's personal homepage. ... and ... description: > # ignore newlines…
ogirginc
  • 4,948
  • 3
  • 31
  • 45
0
votes
1 answer

finding local maxima and minima of the image in matlab

I have an Image in matlab and to which I did the following command sample.png I=imread('sample.png'); sumCol=sum(I,2); plot(sumCol); Now based on y value threshold for example 40 I need to get local maxima and two minima for each of those…
Naseer
  • 4,041
  • 9
  • 36
  • 72
0
votes
1 answer

Find the nearest peak from a point with MATLAB

I have a waveform, in which I have determined a specific point (green star on plot below) with a criteria. I would like now to find the location of the next peak (could be a maxima or minima) on the right of this point (e.g red circle on plot below,…
user3406207
  • 315
  • 1
  • 3
  • 18
0
votes
2 answers

Matlab Maxima Minima Function

So I'm a couple of steps away from successfully writing this function: Here is what I have so far: function a=myanalyzecp(f,a,b) syms x; v=coeffs(f(x)); % grabs function's coefficients vertex=(-v(2))/(2*v(3)); % vertex formula if (a
ADH
  • 13
  • 1
  • 3
0
votes
0 answers

Minima in a region of 2d matrix with its indices

I have a set of 18 MATLAB vectors (raw readings of current values) data that varies with many minimas and maximas put into a 2d matrix of B which has a size of 18 by 16348. I have found the indices and value of global max of each row vector. Stored…
vittal rao
  • 17
  • 1
  • 8
0
votes
1 answer

check alternation maxima minima in matlab

I have written an algorithm that finds the local maxima and minima in a signal. [id_max, id_min] = find_max_min(signal); I would like now to check: if the alterantion of maxima and minima is respected i.e.…
gabboshow
  • 5,359
  • 12
  • 48
  • 98
-1
votes
5 answers

finding count of minima or maxima in a set of numbers

The user inputs n number of datas to be followed in the next line and then it inputs n numbers a1,a2,...,an. These numbers are heights of a some mountains. The set of these numbers is "ACCEPTABLE" if there is only one maxima or minima. for…
titansarus
  • 136
  • 1
  • 7
-1
votes
3 answers

Find local minima of series

There is a series 8,7,6,5,6,7,8,7,6,7,8 which has local minima at 5 and 6. How to get this using R?
Hari Prasad
  • 1,751
  • 2
  • 15
  • 20
-1
votes
1 answer

Python or R, efficient seperate time series into zig zag

If I have a list l = [0, 0, 1, 2, 2, 2, 1, -1, -1, -1, 0] I hope to obtain three zig-zag, a zig-zag is defined as local maxima (can be a plateau) and minima (can be a valley), as shown below, there are 3 zig zags, A, B, C while A and B overlap in…
tesla1060
  • 2,621
  • 6
  • 31
  • 43
-2
votes
1 answer

numerical root finding for positive definite function in Python

I have a very complicated positive definite linear continuous function of a single variable k for which I am trying to find all roots in a given range of k; say -4 < k < 4. Up until now I have first estimated the minima of the function, by…
1 2 3
4