I need to comment whether my optimization function is convex or non-convex. My optimization function is in the form of $(y-y_{cap})^2$. y is know. $y_{cap}$ comes out of a MATLAB pfile. So, $y_{cap}$ can be considered output of a black-box model. It is also not possible to plot $y-y_{cap}$ as it is a $22\times8$ matrix. Please help me to comment whether the optimization function is convex or non-convex,
2025-01-13 00:00:00.1736726400
Optimization function convex or not
81 Views Asked by Harish Satyavada https://math.techqa.club/user/harish-satyavada/detail At
1
There are 1 best solutions below
Related Questions in OPTIMIZATION
- How to solve word problems about polynomials given a rectangle and the following I have tried all i know?
- Finding the closest vector to an observation
- if $x\in [2009,2010],y\in [2008,2009]$then $(x+y)(\frac{1}{x}+\frac{a}{y})\ge 9,a>0$ find $a_{min}$
- How do you find the greatest rectangle of given ratios that can be cut from another fixed rectangle?
- Nonlinear Least Squares vs. Extended Kalman Filter
- Maximisation and minimisation of sum of squares, if sum is equal to 15
- quasi-newton method converges in at most n+1 iterations
- Show that $\bf x$ is a basic feasible solution
- Maximizing $3 x^2+2 \sqrt{2} x y$ with $x^4+y^4=1$
- Optimization Question, Finding Maximum and Minimum Values of $30x^2 + 480/x$
Related Questions in CONVEX-ANALYSIS
- Is the ellipsoid $x'Qx < \alpha$ equivalent to $\alpha Q^{-1} - x x' \succ 0$?
- how to prove a set is a closed half space: here is the condition
- Convexity of the set
- Uniformly convex approximation of convex domain
- Does cubic spline interpolation preserve both monotony and convexity?
- Consider the Hilbert product space $X\times X$
- Legendre transform of a norm
- Uniformly convex set, lower level sets
- Degree of nef toric divisors which are not big
- Is this set of functions convex?
Related Questions in CONVEX-OPTIMIZATION
- Let C be a nonempty, closed convex subset of X. Let $x,y\in X$. Show that $y=P_c(x)\iff y\in (Id + N_c)^{-1}(x)$.
- Subderivative of $ ||Au||_{L^{\infty}} $ to Compute Proximal Operator / Prox Operator
- Consider the Hilbert product space $X\times X$
- Legendre transform of a norm
- Projection of a hyperplane
- A complex optimization problem (maximize determinant of matrix)
- The Proximal Operator of a Function with $ {L}_{1} $ Norm and Affine Term
- Optimization function convex or not
- Holding the constraints of a constrained optimization when transformed into unconstrained optimization
- is the Superellipse function convex or not?
Related Questions in MATLAB
- Can I get multivariable taylor series expansion on wolfram alpha or matlab?
- How to handle complicated double integral like this numerically
- How to find the inverse of an upper triangular matrix
- System of ODEs Matrix Representation?!
- How to do a double sum in MATLAB given the explicit values of the function
- Optimization function convex or not
- How do I use ode45 in MATLAB on this differential equation?
- Matlab code for finding the curvature of a curve using given data points
- What comes after sorting eigenvalues in PCA?
- Constructing a 2 fold oversampled cosine basis in MATLAB
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Refuting the Anti-Cantor Cranks
- Find $E[XY|Y+Z=1 ]$
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- What are the Implications of having VΩ as a model for a theory?
- How do we know that the number $1$ is not equal to the number $-1$?
- Defining a Galois Field based on primitive element versus polynomial?
- Is computer science a branch of mathematics?
- Can't find the relationship between two columns of numbers. Please Help
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- A community project: prove (or disprove) that $\sum_{n\geq 1}\frac{\sin(2^n)}{n}$ is convergent
- Alternative way of expressing a quantied statement with "Some"
Popular # Hahtags
real-analysis
calculus
linear-algebra
probability
abstract-algebra
integration
sequences-and-series
combinatorics
general-topology
matrices
functional-analysis
complex-analysis
geometry
group-theory
algebra-precalculus
probability-theory
ordinary-differential-equations
limits
analysis
number-theory
measure-theory
elementary-number-theory
statistics
multivariable-calculus
functions
derivatives
discrete-mathematics
differential-geometry
inequality
trigonometry
Popular Questions
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- How to find mean and median from histogram
- Difference between "≈", "≃", and "≅"
- Easy way of memorizing values of sine, cosine, and tangent
- How to calculate the intersection of two planes?
- What does "∈" mean?
- If you roll a fair six sided die twice, what's the probability that you get the same number both times?
- Probability of getting exactly 2 heads in 3 coins tossed with order not important?
- Fourier transform for dummies
- Limit of $(1+ x/n)^n$ when $n$ tends to infinity
I assume that you have a black-box model, which takes some inputs $x$ and map them to $y_{cap}$. Lets call this model $B$, so we have $y_{cap} = B(x)$. Then, your objective is $$\|y - B(x)\|^2.$$ This is not convex, unless $B$ is actually an affine function.