Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 348 results for
gaussian
- Page 1
Gaussian elimination in pascal
Programming
Software Development
17 Years Ago
by pukepuke
…matriz and a n x 1 vector by
gaussian
elimination with partial pivotization. The program must…then begin for i:=1 to n do {
gaussian
elimination} begin if i > k then …
Gaussian Noise function for images
Programming
Software Development
16 Years Ago
by happy8899
How for me to create
gaussian
noise to be put into images where the
gaussian
noise have several level of noise. Eg) i can select 10% until 100% for the level of
gaussian
noise to be inserted into the images.
Re: Gaussian elimination in pascal
Programming
Software Development
17 Years Ago
by Duoas
Hey there, just a heads-up to let you know that help is forthcoming. I just had to go learn how to solve a linear system of equations using
gaussian
elimination and partial pivotization first. Now I'm looking over your code. I've got a few suggestions about commentary and variable names, but that will come when I post again.
Re: Gaussian elimination in pascal
Programming
Software Development
17 Years Ago
by Duoas
…, but [I]you[/I] need to read some more on
gaussian
elimination using partial pivotization. Your code is missing loops where…
Re: Gaussian Elimination
Programming
Software Development
14 Years Ago
by mike_2000_17
…. You should also understand that pivoting is part of the
Gaussian
elimination. The algorithm is that for every column, you find… way to program, kudos to vavazoom). BTW this is a
Gaussian
elimination, not a LU-decomposition (LU-decomp. is one, slightly… way to solve Ax=b, but this problem is on
Gaussian
elim.).
Gaussian elimination with row interchange
Programming
Computer Science
21 Years Ago
by sagman881
does anyone have any idea about the solving a linear system using
gaussian
elimination? i got the row interchange to work but i am having trouble in the for loop of the stage counter. help would be appreciated
Gaussian Random number generator
Programming
Software Development
17 Years Ago
by mitzoff
…'m trying to write a random number generator with a
Gaussian
distribution with user-defined mean and variance. I've looked…
Re: Gaussian Random number generator
Programming
Software Development
17 Years Ago
by GreenDay2001
What didn't you understand. Try a google search. Here is alink and a sample program: [url]http://www.taygeta.com/random/
gaussian
.html[/url] [url]http://www.physics.unlv.edu/~pang/comp2/code213.c[/url]
Gaussian Elimination in C++
Programming
Software Development
16 Years Ago
by nito28
For this you will write a
Gaussian
Elimination routine (with or without pivoting - for most of you, …
Linear System : Gaussian Elimination with partial pivoting
Programming
Software Development
19 Years Ago
by Asif_NSU
Gaussian
elimination is designed to solve systems of linear algebraic equations, […
Gaussian Elimination
Programming
Software Development
14 Years Ago
by vavazoom
Hey...I'm working on a
Gaussian
elimination problem...my pivot doesn't seem to work correctly...…
Re: Gaussian Elimination
Programming
Software Development
14 Years Ago
by mike_2000_17
…-made code. If the OP wanted to just pick a
Gaussian
elimination algorithm to copy-paste in his own code, he…
Re: Gaussian Elimination
Programming
Software Development
14 Years Ago
by tesuji
… are partly right. He did almost already solve the complete
Gaussian
elimimation algorithm, so my hidden agenda was to show him…
Gaussian elimination with scaled partial pivoting
Programming
Software Development
14 Years Ago
by Crzyrio
… a C++ Program to solve a system of equations using
Gaussian
elimination with scaled partial pivoting method. Now our prof has…
Gaussian Elimination
Programming
Software Development
14 Years Ago
by XodoX
Hello, I would like to have a program that solves
Gaussian
elimination. I need it for reference, I think it would …
Gaussian Elimination Program using C++
Programming
Software Development
12 Years Ago
by Teefy
I want to perform
Gaussian
Elimination on a matrix which is read in as a …
Re: Gaussian Elimination with Scaled Partial Pivoting.
Programming
Software Development
8 Years Ago
by AssertNull
… to my head and said, "Do Wallace Jnr's
Gaussian
elimination with partial pivoting homework", I'm a dead…
Re: Help with Gaussian Elimination
Programming
Software Development
19 Years Ago
by iamthwee
… Salem is right. Your way to do
Gaussian
elimination is piss poor or you copied it… would be as follows: [CODE]/* Program to demonstrate
gaussian
elimination on a set of linear simultaneous equations */ #include…i + 1, n-1))/ a[i][i]; } } /* REFINED
GAUSSIAN
ELIMINATION PROCEDURE */ void gauss(double a[][n ], double b[], double…
Help with Gaussian Elimination
Programming
Software Development
19 Years Ago
by mcook228
… spline. The values for my coefficients are correct, but the
Gaussian
elimination part of my program has me really confused. I…'s where the problems begin... I just get garbage data... /*
Gaussian
Elimination (provided by instructor) */ for(i=1;i<(n…
Elimination part of Gaussian Elimination
Programming
Software Development
14 Years Ago
by vavazoom
…'m having an issue with the elimination portion of my
Gaussian
Elimination problem. The program crashes while running, I can't…][col]; } cout << endl; } cout << "Start
Gaussian
Elimination" << endl; gaussianElimination(); for(row = 0; row…
2D Gaussian convolution
Programming
Software Development
13 Years Ago
by newack
Hello, for my assignment, I have to implement 2D
Gaussian
convolution using 1D
Gaussian
masks. I have two pgm files. I know the theory but I do not know where to start and how to deal with pixels. can anybody help me?
Re: 2D Gaussian convolution
Programming
Software Development
13 Years Ago
by Software guy
… the pixel values from your pgm image, just apply 1D
Gaussian
formula on those values and view the result. If your…
how to fit 2D contour plot to 2D gaussian
Programming
Software Development
11 Years Ago
by reham.mostafa.14268
… contour plot and I want to fit it with 2D
Gaussian
. This is the script I used to plot the 2D… cset.collections: c.set_linestyle('solid') colorbar() show() How to fit
Gaussian
to 2D histogram in the same plot?
Re: Help with Gaussian Elimination
Programming
Software Development
19 Years Ago
by iamthwee
…) // Solve system of N linear equations with N unknowns // using
Gaussian
elimination with scaled partial pivoting // First N rows and N…
Re: Help with Gaussian Elimination
Programming
Software Development
17 Years Ago
by tformed
…) // Solve system of N linear equations with N unknowns // using
Gaussian
elimination with scaled partial pivoting // First N rows and N…
Re: Help with Gaussian Elimination
Programming
Software Development
14 Years Ago
by ssahmed
… help my e-mail siddigsamia@yahoo.com 1) Implement the
Gaussian
elimination and with RREF method using MatLab or C++ to…
Re: Matrices w/ Gaussian Elimination
Programming
Software Development
14 Years Ago
by mike_2000_17
…. One thing that you can do, as part of the
Gaussian
elimination, is set the values that are cancelled to zero…... not that you should ever worry about efficiency with a
Gaussian
elimination since it's already (almost) the worst algorithm for…
Re: 2D Gaussian convolution
Programming
Software Development
13 Years Ago
by Software guy
… image. Then read these numbers into matrix and apply the
gaussian
filter matrix. The resulting file will be converted back to…
help with "Gaussian elimination with scaled partial" code
Programming
Software Development
15 Years Ago
by mubdea
hallo everyone. I need a code for "
Gaussian
elimination with scaled partial" please help me
Re: help with "Gaussian elimination with scaled partial" code
Programming
Software Development
15 Years Ago
by ItecKid
Try [URL="http://lmgtfy.com/?q=
Gaussian
+elimination+with+scaled+partial"]this[/URL].
1
2
3
6
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC