for issues related to Gaussian functions
0
votes
1answer
18 views
Matlab image centroid simulation
I was given this task, I am a noob and need some pointers to get started with centroid calculation in Matlab:
Instead of an image first I was asked to simulate a Gaussian distribution(2 dimensional), ...
0
votes
1answer
26 views
Multivariate gaussian classifier implementation. Trouble understanding, going from Naive Gaussian
Thank you for checking this question out.
I am trying to understand how to use the multivariate gaussian classifier.
To introduce you better to my problem, I will show how currently I classify data.
...
1
vote
2answers
221 views
Parallelizing the Gaussian Blur Algorithm with OpenMP
I was trying to parallelize the gaussian blur function using OpenMP,
but I am new at OpenMP, and when I tried to parallelize the two for loops (I don't think there are any variables that need to be ...
0
votes
1answer
29 views
How to find surface area using gaussian quadrature method in python, which is accomplished by tessellating or meshing the coordinates
I am new to python and basically from mechanical background, So i feel it difficult to solve it. kindly help me in this issue.
I have coordinates Xs, Ys, Zs, each having some set of random points. ...
0
votes
1answer
66 views
Scaling Laplacian of Gaussian Edge Detection
I am using Laplacian of Gaussian for edge detection using a combination of what is described in http://homepages.inf.ed.ac.uk/rbf/HIPR2/log.htm and http://wwwmath.tau.ac.il/~turkel/notes/Maini.pdf
...
0
votes
0answers
25 views
use watts in random signal generation
i would like to understand what is a different from electrical point of view in generation of two kind of random noise,one let say white noise and second Gaussian random signal,let us consider ...
-2
votes
2answers
35 views
Generating numbers with Gaussian function in a range using python
I want to use the gaussian function in python to generate some numbers between a specific range giving the mean and variance
so lets say I have a range between 0 and 10
and I want my mean to be 3 ...
-2
votes
0answers
30 views
Minimum degree of a polynomial passing through points [closed]
If P(x) is a polynomial such that P(a1)=b1, P(a2)=b2, ... , P(ak)=bk, how can I find the polynomial which has minimum degree and for whom the relations above are true?
-1
votes
0answers
70 views
Two Summations in Matlab [closed]
I need to write a code in Matlab for the following equation:
Σ i=0 to 100 ( (f(x). Σ j=0 to k f(y) )
where f(x), f(y) and k returns constant values. I have tried to write this code. Kindly tell me ...
2
votes
2answers
55 views
Scaling of Gaussian Equation
I'm using Gaussian equation for a particular photo effect in an iOS application.
I use:
double sigmaX = ...; //some value here
for(int i=0;i<height;i++)
{
double F = 0;
...
0
votes
1answer
26 views
Upside-down Gaussian distribution
I'm looking for a function that is an upside-down function of Gaussian. So when x = 0, y should be 0. On both sides (positive and negative) the function should converge to 1. Can anyone point me in ...
0
votes
0answers
92 views
Gaussian Blur with convolution matrix on shader
I am trying to implement a gaussian blur with convolution matrix on my shader.
This is the code i have:
float4 ppPS(float2 uv : TEXCOORD0, uniform sampler2D t1) : COLOR {
//kernel matrix
...
-2
votes
0answers
56 views
Gaussian mixture model and log likelihood [closed]
I have a database where there are certain number of data sets, let say x. I also have another data y which needs to be compared with the data set x and find out if y belongs to any of the data x, I ...
1
vote
1answer
106 views
How to get the gaussian blur effect on a UIView in iOS6
Does anyone know how to achieve a gaussian blur effect on an UIView in iOS6? Similar to twitter's #music app when the filter menu is open. (the background under the menu becomes blurred)
1
vote
1answer
77 views
gaussian mixture based segmentation
I have an image with four different kinds of colors - dark blue, light blue, an even lighter blue - background and white - background. I'd like to segment only the first two categories
bG= ...
1
vote
2answers
85 views
Apply GaussianBlur to Individual Pixels
I am writing an application in C++ using OpenCV to apply a Gaussian filter to individual pixels in an image. For example, I loop through each pixel in the image and if they match a particular RGB ...
0
votes
1answer
65 views
How to plot two 1-dimensional Gaussian distributions together with the classification boundary [Matlab]?
I have two classes(normally distributed), C1 and C2, each defined by their mean and standard deviation. I want to be able to visualize the pdf plot of a normal distributions and the classification ...
0
votes
0answers
127 views
Parzen Window Estimate
how would I code a parzen window estimate when the window estimate is a spherical Gaussian in Matlab.
I'm trying to write a program to classify an arbitrary test point x based on Parsen window ...
5
votes
2answers
70 views
Interpolating data in R
Let's suppose I have a 3 by 5 matrix in R:
4 5 5 6 8
3 4 4 5 6
2 3 3 3 4
I would like to interpolate in between these values to create a matrix of size 15 by 25. I would also like to ...
0
votes
2answers
130 views
MATLAB, Gaussian parameters
I have to find the gaussian parameters of a data series with at least two peaks. How can I manage? Assume I have yi = f(xi) and I need the parameters mu and sigma.
I know I can take the logarithm of ...
1
vote
1answer
67 views
OHCL Time Series - Anomaly Detection with Multivariate Gaussian Distribution
I have a OHLC time series for some stock prices:
library(quantmod)
library(mnormt)
library(MASS)
download.file("http://dl.dropbox.com/u/25747565/941.RData", destfile="test.RData")
load("test.RData")
...
0
votes
2answers
226 views
Gaussian Random Signal with mean 0 and variance 1
I need to generate a Gaussian Random Signal using the randn function, with mean 0 and variance 1.
After using help randn I found many ways to use the randn function.
RANDN Normally distributed ...
0
votes
1answer
942 views
MATLAB Image Sharpening - Gaussian High Pass Filter using (1- Gaussian Low Pass Filter)
I am trying to sharpen an image by designing a Gaussian High-Pass Filter. I would like to do this using the fact that the high-pass filter is equivalent to the identity matrix minus the low-pass ...
0
votes
1answer
59 views
Random number - Choose seed
because of one project I have to make use of pseudo random numbers with normal distribution.
To this respect, I'm generally putting this down:
nn_u = ...
3
votes
1answer
109 views
How to find width of (1D discrete) Gaussian Kernel for a certain sigma?
Is there a rule of thumb or mathematical equation that tells me how wide my (1D discrete) Gaussian Kernel should be for a certain sigma?
Lets say, I choose a sigma of 1.87, should my kernel be 5 ...
1
vote
1answer
112 views
Mixture of Gaussian and Gamma distribution
I'm looking for some script/package in R (Python will do too) to find out the component distribution parameters from a mixture of Gaussian and Gamma distributions. I've so far used
the R package ...
0
votes
0answers
24 views
Calculating NORM.DIST in JavaScript
I am trying to calculate the NORM.DIST in JavaScript. I am starting from this link: http://office.microsoft.com/en-us/excel-help/normdist-HP005209192.aspx.
I already know how to calculate it when ...
0
votes
0answers
292 views
Gauss-Jordan Elimination
I have to design an algorithm as an extension of forward elimination that does Gauss Jordan Eliminations on a matrix. My program is executing and creating the diagonal of numbers, but they are not ...
2
votes
1answer
139 views
Metropolis-Hastings algorithm, using a proposal distribution other than a Gaussian in Matlab
I am currently working on my final year project for my mathematics degree which is based on giving an overview of the Metropolis-Hastings algorithm and some numerical examples.
So far I have got some ...
1
vote
1answer
95 views
Using matlab function “pdf”
I have got a Gaussian mixture distribution object obj of 64 dimensions and would like to put it in the pdf function to find out the probability of certain point.
Yet when I type pdf(obj,obj.mu(1,:)) ...
1
vote
1answer
269 views
Fit data to normal distribution
I want some data to fit the corresponding Gaussian distribution.
The data is meant to be Gaussian already, but for some filtering reasons, they will not perfectly match the prescribed and expected ...
0
votes
0answers
82 views
Scale simulated time series to approach given Gaussian process
I am not sure if this question will be a little off-topic on this forum, that I will give it a try anyway
By using MATLAB, I'm on my way to generate a turbulent wind field. This wind field is ...
0
votes
1answer
150 views
How to make parameterized Gaussian blur?
I have implemented Gaussian blur using matrices/kernels. I have 3x3, 5x5 and 7x7.
However in Corel PhotoPaint it is possible to use Gaussian Blur with parameter ranging from 0.1 to 250.0. For value of ...
1
vote
1answer
81 views
java.util.Random - nextGaussian() only gives Z not P(Z)
Given an instance of, as titled, 'nextGaussian()'
public static double findGaussProbability(){
Random rnd = new Random();
double Z = rnd.nextGaussian();
...
0
votes
1answer
283 views
fspecial alternatives for Gaussian filter
I am attempting to use a MATLAB script that requires the use of the Image Processing Toolbox function fspecial().
I do not have the Image Processing Toolbox, but do have the Signal Processing ...
0
votes
0answers
57 views
Library to train GMMs from MFCC
I am trying to build a basic Emotion detector from speech using MFCCs, their deltas and delta-deltas. A number of papers talk about getting a good accuracy by training GMMs on these features.
I ...
1
vote
2answers
211 views
scipy.optimize.curve_fit unable to fit shifted skewed gaussian curve
I am trying to fit a skewed and shifted Gaussian curve using curve_fit but I find that under certain conditions the fitting is quite poor, often giving me close to or exactly a straight line. I found ...
-1
votes
1answer
87 views
Gaussians in MATLAB
If I want to create a gaussian function and then find the value at a particular point, what functions would I use in MATLAB. Sorry if this is supposed to be obvious but somehow I couldn't find it by ...
2
votes
1answer
83 views
Custom Algorithm for Exp. maximization in Matlab
I try to write an algorithm which determine $\mu$, $\sigma$,$\pi$ for each class from a mixture multivariate normal distribution.
I finish with the algorithm partially, it works when I set the ...
1
vote
0answers
104 views
Implementing GB-RBMs for real-valued data
I am trying to implement a Deep Belief Network for speech recognition. And hence, need the first layer of RBM to have gaussian visible units.
I used @Andrej Karpathy's matrbm ...
5
votes
3answers
262 views
asymmetric Gaussian filter
I now want to use asymmetric Gaussian filter kernel to smooth an image using matlab, because I don't want the equal smoothness in vertical and horizontal(with different size of gaussian mode and ...
0
votes
1answer
70 views
creatig random gaussians on an image - matlab
I am trying to create some Gaussian distributions and put them on an image. The Gaussians have randomly created parameter (amplitude, position and standard deviation). First I put the parameters into ...
0
votes
1answer
136 views
What is faster? glFramebufferTexture2D output flickers
inside my program I'm using glFramebufferTexture2D to set the target. But if I use it the output starts to flicker. If I use two frame buffers the output looks quite normal.
Has anybody an idea why ...
1
vote
3answers
246 views
Eclipse gives error when using GaussianBlur with OpenCV for Android
I posted a little part of my code, cause i keep getting a strange error that I can't seem to get rid of. The problem can be found on this line: Imgproc.GaussianBlur(mGray, mGray, new Size (5,5), 2.2, ...
0
votes
0answers
28 views
Generating values from normal distribution with own function of normal distribution?
I was wondering, if there is a way to generate a Random function, that gives me random variables in a modified Gaussian form?!
My funktion, how the values should be like, is represented like this:
...
1
vote
1answer
84 views
Matrix indexing and division in Matlab
I am trying to code gauss elimination and this is the piece of code I'm using. The matrix is already triangular but there is a mistake in this expression:
x(n) = b(n) / A(n, n);
Here is the ...
4
votes
3answers
104 views
Plotting bivariate Gaussians in R
I have two classes, C1 and C2, both of which are described by bivariate Gaussians with means at (0,0) and (1,3) and covariances I and 2I. Priors of C1 and C2 are 0.4 and 0.6 respectively.
I have to ...
0
votes
0answers
60 views
Plotting a histogram estimate together with an analytical solution of the mean and covariance parameters
How do I plot a histogram estimate of this marginal distribution p(x1):
import numpy as np
import matplotlib.pyplot as plt
from scipy.stats import norm
linalg = np.linalg
N = 100
mean = [1,1]
cov = ...
3
votes
3answers
239 views
Generate a data set consisting of N=100 2-dimensional samples
How do I generate a data set consisting of N = 100 2-dimensional samples x = (x1,x2)T ∈ R2 drawn from a 2-dimensional Gaussian distribution, with mean
µ = (1,1)T
and covariance matrix
Σ = (0.3 0.2 ...
0
votes
1answer
145 views
Plotting of 1-dimensional Gaussian distribution function
How do I make plots of a 1-dimensional Gaussian distribution function using the mean and standard deviation parameter values (μ, σ) = (−1, 1), (0, 2), and (2, 3)?
I'm new to programming, using ...





