python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Big O Understand Quadratic n(n+1)/2 diagram
Reading DS & Algorithms on Quadratic n(n+1)/2. There are 2 diagrams here Figure 4.1a & 4.1b.
I understand 4.1a diagram but not diagram 4.1b.
I know Figure 4.1b is n/2 (x-axis) multiple (n+1) (...
yapkm01
Votes: 0
Answers: 1
Quadratic Equation with Python and Flask
So currently I am trying to make a program using flask, but I am getting a TypeError when I run it, saying The view function for 'post_factors' did not return a valid response. The function either ret...
CoderMan
Votes: 0
Answers: 1
Is it possible to get decision boundary equation for Quadratic Discriminant Analysis?
I use Python and sklearn packages.
I used LDA for predictions and I can get the coefficients of the decision boundary.
clf = LinearDiscriminantAnalysis(priors=[prob_norm, prob_anem])
clf.fit(X_train,...
Arzental
Votes: 0
Answers: 0
How do I find the value of a quadratic equation? For instance the value of (-12+√(b^2-4ac))/2a
(-12+√(b^2-4ac))/2a
(where a = 1, b = 5, c = 3)
How do I write a code for a quadratic equation?
Aakanshya
Votes: 0
Answers: 2