The class/parameter names in the prototype may not match the version in the header file. Some have been modified to improve readability. Description The sample declares an empty vector of integers. It adds 10 integers to the vector, then displays the contents of the vector. It ...
In this paper we study functions and vector fields with isolated singularities on a $C(\\mathbb{C}P^n)$-singular manifold. In general, a$C(\\mathbb{C}P^n)$-singular manifold is obtained from a~smooth $(2n+1)$-manifold with boundary which is a disjoint union of complex projective ...
Lookup and reference: Looks up values in a vector or array LOWER Text: Converts text to lowercase MAKEARRAY (2024) Logical: Returns a calculated array of a specified row and column size, by applying a LAMBDA MAP (2024) Logical: Returns an array formed by mapping each value in the ar...
Recently, several interesting constructions of vectorial Boolean functions with the maximum number of bent components (MNBC functions, for short) were proposed. However, many of them have component functions from the completed Maiorana-McFarland class. Moreover, no examples of MNBC functions containin...
In theOutputs,Update, etc. methods, use or update the DWork vector values, as needed. For example, the followingOutputsmethod sets the S-function output equal to the value stored in the DWork vector. TheUpdatemethod then changes the DWork vector value to the current value of the first S-...
In the examples that follow,mldatais a Stateflow data of typeml,ws_num_arrayis a 2-by-2 MATLAB workspace array with numerical values, andws_str_arrayis a 2-by-2 MATLAB workspace array with character vector values. mldata = ml.ws_num_array; /* OK */ n21 = mldata[2][1]; /* ...
vector<uint64_t> keys = distinct_keys<uint64_t>(num_keys, seed);assert(keys.size() == num_keys);/*Set up a build configuration.*/build_configuration config; config.c=6.0; config.alpha=0.94; config.minimal_output=true;//mphfconfig.verbose_output=true;/*Declare the PTHash function.*...
The following formula finds Mary's age in the sample worksheet: =LOOKUP(E2,A2:A5,C2:C5) The formula uses the value "Mary" in cell E2 and finds "Mary" in the lookup vector (column A). The formula then matches the value in the same row in t...
This function clamps the incoming vector x to the range specified by minVal and maxVal (which may be scalars or vectors). For example, specifying minVal to be 0.0 and maxVal to be 1.0 constrains x to be in the range 0.0 to 1.0. This is such a common range to which to clamp numbers ...
<< endl << endl; // Hyperbolic tangent of the standard angles // in the first two quadrants of the complex plane vector <complex <double> > v1; vector <complex <double> >::iterator Iter1; complex <double> vc1 ( polar ( 1.0, pi / 6 ) ); v1.push_back( tan ( vc1 ) ); ...