Source code for cvxpy.atoms.affine.vec

"""
Copyright 2013 Steven Diamond

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""

from cvxpy.atoms.affine.reshape import reshape
from cvxpy.expressions.expression import Expression


[docs]def vec(X, order: str = 'F'): """Flattens the matrix X into a vector. Parameters ---------- X : Expression or numeric constant The matrix to flatten. order: column-major ('F') or row-major ('C') order. Returns ------- Expression An Expression representing the flattened matrix. """ assert order in ['F', 'C'] X = Expression.cast_to_const(X) return reshape(X, (X.size,), order)