Home
last modified time | relevance | path

Searched refs:RowVector (Results 1 – 25 of 391) sorted by relevance

12345678910>>...16

/dports/math/octave/octave-6.4.0/liboctave/array/
H A DdRowVector.h36 RowVector : public MArray<double>
42 explicit RowVector (octave_idx_type n) in RowVector() function
47 RowVector (octave_idx_type n, double val) in RowVector() function
50 RowVector (const RowVector& a) : MArray<double> (a) { } in RowVector() function
56 RowVector& operator = (const RowVector& a)
62 bool operator == (const RowVector& a) const;
63 bool operator != (const RowVector& a) const;
67 RowVector& insert (const RowVector& a, octave_idx_type c);
69 RowVector& fill (double val);
72 RowVector append (const RowVector& a) const;
[all …]
H A DdRowVector.cc44 RowVector::operator == (const RowVector& a) const in operator ==()
53 RowVector::operator != (const RowVector& a) const in operator !=()
58 RowVector&
77 RowVector&
114 RowVector
115 RowVector::append (const RowVector& a) const in append()
131 RowVector
137 RowVector
143 RowVector
158 RowVector
[all …]
H A DCRowVector.h61 explicit ComplexRowVector (const RowVector& a) : MArray<Complex> (a) { } in ComplexRowVector()
74 ComplexRowVector& insert (const RowVector& a, octave_idx_type c);
83 ComplexRowVector append (const RowVector& a) const;
99 ComplexRowVector& operator += (const RowVector& a);
100 ComplexRowVector& operator -= (const RowVector& a);
107 friend ComplexRowVector operator * (const RowVector& a,
/dports/math/octave-forge-nurbs/nurbs-1.4.3/src/
H A Dlow_level_functions.h17 octave_idx_type findspan(int n, int p, double u, const RowVector& U);
19 void basisfun(int i, double u, int p, const RowVector& U, RowVector& N);
21 void basisfunder (int i, int pl, double uu, const RowVector& u_knotl,
25 const RowVector &U, const NDArray &P,
30 int surfderivcpts (octave_idx_type n, octave_idx_type p, const RowVector& U,
31 octave_idx_type m, octave_idx_type q, const RowVector& V,
36 int surfderiveval (octave_idx_type n, octave_idx_type p, const RowVector &U,
37 octave_idx_type m, octave_idx_type q, const RowVector &V,
H A Dtbasisfun.cc21 void onebasisfun__ (double u, octave_idx_type p, RowVector U, double *N) in onebasisfun__()
90 void onebasisfun__ (double u, double p, RowVector U, double *N) in onebasisfun__()
156 RowVector N(u.cols ());
163 RowVector U = args(2).row_vector_value (true, true);
172 RowVector Nder(u.cols ());
183 RowVector p = args(1).row_vector_value ();
187 RowVector U = C(0).row_vector_value (true, true);
188 RowVector V = C(1).row_vector_value (true, true);
221 RowVector U = C(0).row_vector_value (true, true);
222 RowVector V = C(1).row_vector_value (true, true);
[all …]
H A Dlow_level_functions.cc25 findspan (int n, int p, double u, const RowVector& U) in findspan()
84 basisfun (int i, double u, int p, const RowVector& U, RowVector& N) in basisfun()
148 RowVector left(octave_idx_type(pl+1), 0.0); // left = zeros(pl+1); in basisfunder()
149 RowVector right(left); // right = zeros(pl+1); in basisfunder()
238 const RowVector &U, const NDArray &P, in curvederivcpts()
260 int surfderivcpts (octave_idx_type n, octave_idx_type p, const RowVector& U, in surfderivcpts()
261 octave_idx_type m, octave_idx_type q, const RowVector& V, in surfderivcpts()
333 int surfderiveval (octave_idx_type n, octave_idx_type p, const RowVector &U, in surfderiveval()
334 octave_idx_type m, octave_idx_type q, const RowVector &V, in surfderiveval()
350 RowVector temp (ip+1, 0.0); in surfderiveval()
[all …]
H A Dnrb_srf_basisfun_der__.cc52 RowVector M(p+1, 0.0), N (q+1, 0.0);
56 RowVector Denom(npt, 0.0);
57 RowVector Denom_du(npt, 0.0);
58 RowVector Denom_dv(npt, 0.0);
63 const RowVector U(knots(0).row_vector_value ()); // U = nrb.knots{1};
65 const RowVector V(knots(1).row_vector_value ()); // V = nrb.knots{2};
70 RowVector spu(u);
79 RowVector spv(v);
H A Dnrb_srf_basisfun__.cc50 RowVector M(p+1, 0.0), N (q+1, 0.0);
53 RowVector denom(npt, 0.0);
55 const RowVector U(knots(0).row_vector_value ()); // U = nrb.knots{1};
57 const RowVector V(knots(1).row_vector_value ()); // V = nrb.knots{2};
62 RowVector spu(u);
71 RowVector spv(v);
/dports/math/octave/octave-6.4.0/doc/liboctave/
H A Dmatvec.texi43 @deftypefn {} {RowVector} {operator +} (const RowVector &@var{a}, const RowVector &@var{b})
44 @deftypefnx {} {RowVector} {operator -} (const RowVector &@var{a}, const RowVector &@var{b})
47 @deftypefn {} {RowVector} product (const RowVector &@var{a}, const RowVector &@var{b})
48 @deftypefnx {} {RowVector} quotient (const RowVector &@var{a}, const RowVector &@var{b})
53 @deftypefn {} {RowVector} {operator -} (const RowVector &@var{a})
406 @deftypefnx {} {} RowVector (const RowVector &@var{a})
409 @deftypefn {} RowVector& {operator =} (const RowVector &@var{a})
416 @deftypefn {} RowVector& insert (const RowVector &@var{a}, int @var{c})
423 @deftypefn {} RowVector append (const RowVector &@var{a}) const
432 @deftypefn {} RowVector& {operator +=} (const RowVector &@var{a})
[all …]
/dports/devel/boost-docs/boost_1_72_0/libs/numeric/ublas/test/
H A Dtest_matrix_vector.cpp36 typedef matrix_row_vector<Matrix> RowVector; in test_matrix_row_facade() typedef
45 RowVector rows(matrix); in test_matrix_row_facade()
63 RowVector rows(A); in test_matrix_row_facade()
80 RowVector rows(A); in test_matrix_row_facade()
97 RowVector rows(RA); in test_matrix_row_facade()
112 RowVector rows(RA); in test_matrix_row_facade()
118 typename RowVector::size_type i = 0; in test_matrix_row_facade()
130 RowVector rows(A); in test_matrix_row_facade()
136 typename RowVector::size_type i = 0; in test_matrix_row_facade()
150 RowVector rows(A); in test_matrix_row_facade()
[all …]
/dports/devel/boost-python-libs/boost_1_72_0/libs/numeric/ublas/test/
H A Dtest_matrix_vector.cpp36 typedef matrix_row_vector<Matrix> RowVector; in test_matrix_row_facade() typedef
45 RowVector rows(matrix); in test_matrix_row_facade()
63 RowVector rows(A); in test_matrix_row_facade()
80 RowVector rows(A); in test_matrix_row_facade()
97 RowVector rows(RA); in test_matrix_row_facade()
112 RowVector rows(RA); in test_matrix_row_facade()
118 typename RowVector::size_type i = 0; in test_matrix_row_facade()
130 RowVector rows(A); in test_matrix_row_facade()
136 typename RowVector::size_type i = 0; in test_matrix_row_facade()
150 RowVector rows(A); in test_matrix_row_facade()
[all …]
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/libs/numeric/ublas/test/
H A Dtest_matrix_vector.cpp36 typedef matrix_row_vector<Matrix> RowVector; in test_matrix_row_facade() typedef
45 RowVector rows(matrix); in test_matrix_row_facade()
63 RowVector rows(A); in test_matrix_row_facade()
80 RowVector rows(A); in test_matrix_row_facade()
97 RowVector rows(RA); in test_matrix_row_facade()
112 RowVector rows(RA); in test_matrix_row_facade()
118 typename RowVector::size_type i = 0; in test_matrix_row_facade()
130 RowVector rows(A); in test_matrix_row_facade()
136 typename RowVector::size_type i = 0; in test_matrix_row_facade()
150 RowVector rows(A); in test_matrix_row_facade()
[all …]
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/libs/numeric/ublas/test/
H A Dtest_matrix_vector.cpp36 typedef matrix_row_vector<Matrix> RowVector; in test_matrix_row_facade() typedef
45 RowVector rows(matrix); in test_matrix_row_facade()
63 RowVector rows(A); in test_matrix_row_facade()
80 RowVector rows(A); in test_matrix_row_facade()
97 RowVector rows(RA); in test_matrix_row_facade()
112 RowVector rows(RA); in test_matrix_row_facade()
118 typename RowVector::size_type i = 0; in test_matrix_row_facade()
130 RowVector rows(A); in test_matrix_row_facade()
136 typename RowVector::size_type i = 0; in test_matrix_row_facade()
150 RowVector rows(A); in test_matrix_row_facade()
[all …]
/dports/databases/mysqlwsrep57-server/boost_1_59_0/libs/numeric/ublas/test/
H A Dtest_matrix_vector.cpp36 typedef matrix_row_vector<Matrix> RowVector; in test_matrix_row_facade() typedef
45 RowVector rows(matrix); in test_matrix_row_facade()
63 RowVector rows(A); in test_matrix_row_facade()
80 RowVector rows(A); in test_matrix_row_facade()
97 RowVector rows(RA); in test_matrix_row_facade()
112 RowVector rows(RA); in test_matrix_row_facade()
118 typename RowVector::size_type i = 0; in test_matrix_row_facade()
130 RowVector rows(A); in test_matrix_row_facade()
136 typename RowVector::size_type i = 0; in test_matrix_row_facade()
150 RowVector rows(A); in test_matrix_row_facade()
[all …]
/dports/databases/percona57-server/boost_1_59_0/libs/numeric/ublas/test/
H A Dtest_matrix_vector.cpp36 typedef matrix_row_vector<Matrix> RowVector; in test_matrix_row_facade() typedef
45 RowVector rows(matrix); in test_matrix_row_facade()
63 RowVector rows(A); in test_matrix_row_facade()
80 RowVector rows(A); in test_matrix_row_facade()
97 RowVector rows(RA); in test_matrix_row_facade()
112 RowVector rows(RA); in test_matrix_row_facade()
118 typename RowVector::size_type i = 0; in test_matrix_row_facade()
130 RowVector rows(A); in test_matrix_row_facade()
136 typename RowVector::size_type i = 0; in test_matrix_row_facade()
150 RowVector rows(A); in test_matrix_row_facade()
[all …]
/dports/databases/xtrabackup/boost_1_59_0/libs/numeric/ublas/test/
H A Dtest_matrix_vector.cpp36 typedef matrix_row_vector<Matrix> RowVector; in test_matrix_row_facade() typedef
45 RowVector rows(matrix); in test_matrix_row_facade()
63 RowVector rows(A); in test_matrix_row_facade()
80 RowVector rows(A); in test_matrix_row_facade()
97 RowVector rows(RA); in test_matrix_row_facade()
112 RowVector rows(RA); in test_matrix_row_facade()
118 typename RowVector::size_type i = 0; in test_matrix_row_facade()
130 RowVector rows(A); in test_matrix_row_facade()
136 typename RowVector::size_type i = 0; in test_matrix_row_facade()
150 RowVector rows(A); in test_matrix_row_facade()
[all …]
/dports/databases/percona57-client/boost_1_59_0/libs/numeric/ublas/test/
H A Dtest_matrix_vector.cpp36 typedef matrix_row_vector<Matrix> RowVector; in test_matrix_row_facade() typedef
45 RowVector rows(matrix); in test_matrix_row_facade()
63 RowVector rows(A); in test_matrix_row_facade()
80 RowVector rows(A); in test_matrix_row_facade()
97 RowVector rows(RA); in test_matrix_row_facade()
112 RowVector rows(RA); in test_matrix_row_facade()
118 typename RowVector::size_type i = 0; in test_matrix_row_facade()
130 RowVector rows(A); in test_matrix_row_facade()
136 typename RowVector::size_type i = 0; in test_matrix_row_facade()
150 RowVector rows(A); in test_matrix_row_facade()
[all …]
/dports/devel/boost-libs/boost_1_72_0/libs/numeric/ublas/test/
H A Dtest_matrix_vector.cpp36 typedef matrix_row_vector<Matrix> RowVector; in test_matrix_row_facade() typedef
45 RowVector rows(matrix); in test_matrix_row_facade()
63 RowVector rows(A); in test_matrix_row_facade()
80 RowVector rows(A); in test_matrix_row_facade()
97 RowVector rows(RA); in test_matrix_row_facade()
112 RowVector rows(RA); in test_matrix_row_facade()
118 typename RowVector::size_type i = 0; in test_matrix_row_facade()
130 RowVector rows(A); in test_matrix_row_facade()
136 typename RowVector::size_type i = 0; in test_matrix_row_facade()
150 RowVector rows(A); in test_matrix_row_facade()
[all …]
/dports/devel/hyperscan/boost_1_75_0/libs/numeric/ublas/test/
H A Dtest_matrix_vector.cpp36 typedef matrix_row_vector<Matrix> RowVector; in test_matrix_row_facade() typedef
45 RowVector rows(matrix); in test_matrix_row_facade()
63 RowVector rows(A); in test_matrix_row_facade()
80 RowVector rows(A); in test_matrix_row_facade()
97 RowVector rows(RA); in test_matrix_row_facade()
112 RowVector rows(RA); in test_matrix_row_facade()
118 typename RowVector::size_type i = 0; in test_matrix_row_facade()
130 RowVector rows(A); in test_matrix_row_facade()
136 typename RowVector::size_type i = 0; in test_matrix_row_facade()
150 RowVector rows(A); in test_matrix_row_facade()
[all …]
/dports/math/octave/octave-6.4.0/libinterp/corefcn/
H A Dmgorth.cc35 template <typename ColumnVector, typename Matrix, typename RowVector>
37 do_mgorth (ColumnVector& x, const Matrix& V, RowVector& h) in do_mgorth()
40 h = RowVector (Vc + 1); in do_mgorth()
44 h(j) = RowVector (Vcj.hermitian ()) * x; in do_mgorth()
123 RowVector h;
H A Dstream-euler.cc177 const RowVector& tx, const RowVector& ty, in calculate_step_vector2d()
205 const RowVector& tx, const RowVector& ty, in euler2d()
346 const RowVector& tx, const RowVector& ty, const RowVector& tz, in calculate_step_vector3d()
378 const RowVector& tx, const RowVector& ty, const RowVector& tz, in euler3d()
449 const RowVector TX = args(2).row_vector_value (); in streameuler2d_internal()
450 const RowVector TY = args(3).row_vector_value (); in streameuler2d_internal()
481 const RowVector TX = args(3).row_vector_value (); in streameuler3d_internal()
482 const RowVector TY = args(4).row_vector_value (); in streameuler3d_internal()
483 const RowVector TZ = args(5).row_vector_value (); in streameuler3d_internal()
/dports/science/opensim-core/opensim-core-4.1/OpenSim/Sandbox/MatlabScripts/
H A DdataTable_example.m25 row0 = RowVector(5, 0);
26 row1 = RowVector(5, 0.25 );
27 row2 = RowVector(5, 0.50 );
28 row3 = RowVector(5, 0.75 );
29 row4 = RowVector(5, 1 );
/dports/math/optpp/optpp-2.4/newmat11/
H A Dtmt5.cpp60 RowVector RV=CV.t(); // RowVector RV; RV=CV.t(); in trymat5()
72 RowVector RV=CV.t(); RowVector RV1=CV1.t(); in trymat5()
73 RowVector R=RV-RV1; Print(RowVector(R-CV2.t())); in trymat5()
81 Print(RowVector(RV-RV1)); in trymat5()
101 RV = Returner1(RV)-1; Print(RowVector(RV-RV1)); in trymat5()
/dports/math/newmat/newmat-1.1_1/
H A Dtmt5.cpp66 RowVector RV=CV.t(); // RowVector RV; RV=CV.t(); in trymat5()
78 RowVector RV=CV.t(); RowVector RV1=CV1.t(); in trymat5()
79 RowVector R=RV-RV1; Print(RowVector(R-CV2.t())); in trymat5()
87 Print(RowVector(RV-RV1)); in trymat5()
107 RV = Returner1(RV)-1; Print(RowVector(RV-RV1)); in trymat5()
/dports/math/octave-forge-parallel/parallel-4.0.1/src/
H A Dselect.cc164 RowVector eidx = RowVector (act);
177 RowVector widx = RowVector (act);
190 RowVector ridx = RowVector (act);

12345678910>>...16