GNU Octave 10.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 
Loading...
Searching...
No Matches
dRowVector.h
Go to the documentation of this file.
1////////////////////////////////////////////////////////////////////////
2//
3// Copyright (C) 1994-2025 The Octave Project Developers
4//
5// See the file COPYRIGHT.md in the top-level directory of this
6// distribution or <https://octave.org/copyright/>.
7//
8// This file is part of Octave.
9//
10// Octave is free software: you can redistribute it and/or modify it
11// under the terms of the GNU General Public License as published by
12// the Free Software Foundation, either version 3 of the License, or
13// (at your option) any later version.
14//
15// Octave is distributed in the hope that it will be useful, but
16// WITHOUT ANY WARRANTY; without even the implied warranty of
17// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18// GNU General Public License for more details.
19//
20// You should have received a copy of the GNU General Public License
21// along with Octave; see the file COPYING. If not, see
22// <https://www.gnu.org/licenses/>.
23//
24////////////////////////////////////////////////////////////////////////
25
26#if ! defined (octave_dRowVector_h)
27#define octave_dRowVector_h 1
28
29#include "octave-config.h"
30
31#include "MArray.h"
32#include "mx-defs.h"
33
34class OCTAVE_API RowVector : public MArray<double>
35{
36public:
37
38 RowVector () : MArray<double> (dim_vector (1, 0)) { }
39
41 : MArray<double> (dim_vector (1, n)) { }
42
43 explicit RowVector (const dim_vector& dv) : MArray<double> (dv.as_row ()) { }
44
45 RowVector (octave_idx_type n, double val)
46 : MArray<double> (dim_vector (1, n), val) { }
47
48 RowVector (const RowVector& a) : MArray<double> (a) { }
49
50 RowVector (const MArray<double>& a) : MArray<double> (a.as_row ()) { }
51
52 RowVector (const Array<double>& a) : MArray<double> (a.as_row ()) { }
53
55 {
57 return *this;
58 }
59
60 ~RowVector () = default;
61
62 OCTAVE_API bool operator == (const RowVector& a) const;
63 OCTAVE_API bool operator != (const RowVector& a) const;
64
65 // destructive insert/delete/reorder operations
66
68
69 OCTAVE_API RowVector& fill (double val);
71
72 OCTAVE_API RowVector append (const RowVector& a) const;
73
75
76 friend OCTAVE_API RowVector real (const ComplexRowVector& a);
77 friend OCTAVE_API RowVector imag (const ComplexRowVector& a);
78
79 // resize is the destructive equivalent for this one
80
82
84
85 // row vector by matrix -> row vector
86
87 friend OCTAVE_API RowVector operator * (const RowVector& a, const Matrix& b);
88
89 // other operations
90
91 OCTAVE_API double min () const;
92 OCTAVE_API double max () const;
93
94 // i/o
95
96 friend OCTAVE_API std::ostream& operator << (std::ostream& os,
97 const RowVector& a);
98 friend OCTAVE_API std::istream& operator >> (std::istream& is, RowVector& a);
99
100 void resize (octave_idx_type n, const double& rfv = 0)
101 {
102 Array<double>::resize (dim_vector (1, n), rfv);
103 }
104
107
108};
109
110// row vector by column vector -> scalar
111
112OCTAVE_API double operator * (const RowVector& a, const ColumnVector& b);
113
115 const ComplexColumnVector& b);
116
117// other operations
118
119OCTAVE_API RowVector linspace (double x1, double x2, octave_idx_type n);
120
122
123#endif
template std::ostream & operator<<(std::ostream &, const Array< bool > &)
#define MARRAY_FORWARD_DEFS(B, R, T)
Definition MArray.h:128
MArray< T > operator*(const MArray< T > &, const T &)
Definition MArray.cc:329
std::istream & operator>>(std::istream &is, SparseBoolMatrix &a)
charNDArray max(char d, const charNDArray &m)
Definition chNDArray.cc:230
charNDArray min(char d, const charNDArray &m)
Definition chNDArray.cc:207
N Dimensional Array with copy-on-write semantics.
Definition Array.h:130
void clear()
void resize(const dim_vector &dv, const T &rfv)
Size of the specified dimension.
Array< T, Alloc > & insert(const Array< T, Alloc > &a, const Array< octave_idx_type > &idx)
Insert an array into another at a specified position.
void fill(const T &val)
Definition Array-base.cc:96
Template for N-dimensional array classes with like-type math operators.
Definition MArray.h:61
MArray< T > transpose() const
Definition MArray.h:97
MArray< T > & operator=(const MArray< T > &a)
Definition MArray.h:79
RowVector(const Array< double > &a)
Definition dRowVector.h:52
RowVector(const RowVector &a)
Definition dRowVector.h:48
~RowVector()=default
RowVector(const dim_vector &dv)
Definition dRowVector.h:43
void clear(octave_idx_type n)
Definition dRowVector.h:105
RowVector(octave_idx_type n, double val)
Definition dRowVector.h:45
RowVector(octave_idx_type n)
Definition dRowVector.h:40
void resize(octave_idx_type n, const double &rfv=0)
Definition dRowVector.h:100
RowVector(const MArray< double > &a)
Definition dRowVector.h:50
Vector representing the dimensions (size) of an Array.
Definition dim-vector.h:90
ColumnVector real(const ComplexColumnVector &a)
ColumnVector imag(const ComplexColumnVector &a)
RowVector linspace(double x1, double x2, octave_idx_type n)
double operator*(const RowVector &a, const ColumnVector &b)
bool operator!=(const dim_vector &a, const dim_vector &b)
Definition dim-vector.h:532
bool operator==(const dim_vector &a, const dim_vector &b)
Definition dim-vector.h:516
#define OCTAVE_API
Definition main.in.cc:55
std::complex< double > Complex
Definition oct-cmplx.h:33