search for: vecto

Displaying 8 results from an estimated 8 matches for "vecto".

Did you mean: vector
2008 Jul 26
4
Data length mismatch.
I have two vectos (list) that represent a years of data. Each "row" is represented by the day of year and the quantity that was sold for that day. I would like to form a new vector that is the difference between the two years of data. A sample of A (and similarly B) looks like: > A[1:5,] DayOfYear...
2006 Jun 17
1
Getting forcasting equation from nnet results
I'm trying to build forecasting equation from weights of 2-2-1 neural net. Running the nnet function gives me a vecto of 9 weights, but I don't know how to build the equation form these values. Can anyone advice? Or at least tell me where the nnet output is described in details (the manual only gives a brief description). Thanks.
2016 Mar 02
4
Proposal for function vectorization and loop vectorization with function calls
Proposal for function vectorization and loop vectorization with function calls ============================================================================== Intel Corporation (3/2/2016) This is a proposal for an initial work towards Clang and LLVM implementation of vectorizing a function annotated with OpenMP 4.5's &qu...
2016 Mar 02
2
Proposal for function vectorization and loop vectorization with function calls
Hi Michael. Thank for your feedback and questions/comments. See below. >>>>>I think it should be possible to vectorize such loop even without openmp clauses. We just need to gather a vector value from several scalar calls, and vectorizer already knows how to do that, we just need not to bail out early. Dealing with calls is tricky, but in this case we have the pragma, so we can assume it should be fine. What do...
2010 Oct 08
6
Selección de observaciones
Hola a todos. Estoy atascado en un sitio que no me he encontrado antes, debe ser fácil y rápido, a ver si alguien me puede ayudar. Puesto fácil, tengo: > aa <- matrix(11:19,3,3) > aa [,1] [,2] [,3] [1,] 11 14 17 [2,] 12 15 18 [3,] 13 16 19 Quiero la fila cuyo primer elemento es 12 y el segundo 15. > aa[aa[,1:2] == (c(12,15)),] Error: (subscript) logical
2002 Sep 19
5
how to use if statement in function correctly
Dear all I try to persuade if statement in my function to work as I want (but I am not very successful:( My question is why my function with if statement is evaluated correctly in case of atomic variables and incorrectly in case of vector variables. Here is an example: #function with if statement fff <- function(otac,sklon) { test <- (otac * 3.69683+286.6*(1/sklon)-0.03100345*otac*sklon) if(test<65) {otac/sklon * 141.76} else {otac * 3.69683+286.6*(1/sklon)-0.03100345*otac*sklon} } > fff(20,70) [1] 40.50286 # corr...
2016 Mar 02
5
RFC: Implementing the Swift calling convention in LLVM and Clang
> On Mar 2, 2016, at 1:33 AM, Renato Golin <renato.golin at linaro.org> wrote: > > On 2 March 2016 at 01:14, John McCall via llvm-dev > <llvm-dev at lists.llvm.org> wrote: >> Hi, all. >> - We sometimes want to return more values in registers than the convention normally does, and we want to be able to use both integer and floating-point registers. For
2017 May 21
2
RFC: A new llvm-dlltool driver and llvm-lib driver improvements
...better API. Of course >>>>> you can reuse code, but what we need is a clean interface. >>>>> >>>>> The library shouldn't be complicated. In fact, it would export only >>>>> one function. >>>>> >>>>> std::vector<uint8_t> createImportLibrary(std::vector<ExportSymbol>) >>>>> >>>>> I.e. it takes a list of DLLExported symbols and returns a .lib file. >>>>> ExportSymbol type contains information about DLLExported symbols. >>>>> >>&gt...