A function provided by the user of a program or an environment

learn more… | top users | synonyms (5)

0
votes
1answer
41 views

Find Verbs in a String

I am trying (and having trouble) to write a program (In C) that accepts a string in the command line (eg. $ test.out "This is a string") and looks through the string to find verbs (and nouns, but if I ...
0
votes
1answer
23 views

Excel VBA: Unlimited Range Inputs With Versatility (?)

Could someone help me create a function that will handle an unlimited number of diverse ranges? I have tried "Paramarray variables() as Variant" and "variable as Range" in my arguments list but ...
-1
votes
0answers
33 views

know functions inside a matlab script

I have a matlab program PROGRAM.M which call to other subprograms(P1.m and P2.m). P1 and P2 also call to other subprograms. function PROGRAM() P1() P2() I want to get the hierarchy of the ...
1
vote
1answer
36 views

Passing a row range to Excel User Define Function and assign it to an array

I am trying to pass two ranges - multiple column single row - to a user defined function in Excel 2007, then assigning it to an array for processing. Function MAE(actualData As Range, forecastData ...
0
votes
0answers
11 views

EDF #NAME Error but works with Sub

I have exhausted EVERY piece of reference and I can't seem to figure out why this function isn't working. I'm new to creating UDFs so here's my problem: I get a #NAME error when I try to call the ...
0
votes
0answers
41 views

Have someone a function in SQL that given a initial date, a day number and a final date calculate next matching day number and month?

I would like to know if someone have a function in SQL that given a initial date, a day number, a frecuency and a final date calculate next matching day number and month? For example ...
0
votes
0answers
70 views

SQL Server Updating the database through a select statement

We have a 3rd party application that takes a SQL select statement and runs it against a SQL Server database at a regular scheduled interval. It wakes up regularly, runs the select for input and does ...
0
votes
1answer
23 views

SQL function that given a date calculates the next date based on an day of week parameter

i would like to know if someone have a function in SQL, than given a initial date and a day of week (tuesday for example) it can calculate when is the next date since de initial date that will be ...
0
votes
1answer
34 views

Unit Testing nHibernate Mappings

I am mapping some table valued functions in nHibernate using HBM files. Our table functions have been changing quite a bit lately, so I want to make sure our mapping files are updated when these ...
0
votes
1answer
89 views

VBA user-defined function to copy value, text formation and hyperlink of a cell?

Given a sample plain excel file here, what is the VBA code to copy value, formation and hyperlink of a cell? i.e. At cell B5 we will call =myCopyCellFunction(B2) and we will get the exact cell value ...
0
votes
1answer
29 views

Javascript personalized function

I need to know how to make something like a jQuery function, not with the CSS selectors, just like this: function getId( item ) { return document.getElementById( item ); } ...
0
votes
4answers
110 views

SQLite - WHERE Clause & UDFs

Intro I have the following SQLite table with 198,305 geocoded portuguese postal codes: CREATE TABLE "pt_postal" ( "code" text NOT NULL, "geo_latitude" real(9,6) NULL, "geo_longitude" real(9,6) ...
0
votes
4answers
51 views

Can't connect to database from a function

Let me apologize in advance. I've been working on this project all day and I'm tired and probably just need sleep but I can't seem to connect to a mysql database from a function. I have a database ...
0
votes
1answer
38 views

How do I use variables across multiple functions?

Suppose I have a simple console program as follows: (haven't tested it and it may contain errors since I'm sort of a newbie) #include <iostream> using namespace std; void startProgram(); int ...
0
votes
0answers
33 views

recursive UDF inaccurate in SSRS with embedded SQL

I am creating a report in Report Designer. The dataset uses a query that looks like: SELECT LE.Amount, dbo.fnMoneyToEnglish(LE.Amount) FROM tblXXX LE WHERE LE.ID = @ID The UDF fnMoneyToEnglish ...
6
votes
2answers
190 views

sql server CLR scalar function with default column name

I was wondering, if there's any way to add a column names to my CLR scalar functions in Sql Server. I mean that after I run my query, I'd like to see a column with a result of this function already ...
0
votes
1answer
87 views

ERROR 1066: Unable to open iterator for alias in certain fields, but works for others

I am unable to use my udf on some fields, yet I can do it on others. If I use my first field, ipAddress, the udf works as intended. However, if I change it to be date I got the 1066 error. Here is my ...
0
votes
1answer
22 views

Can't trigger class function after nesting object (AS3)

I created a class called item. This class returns its variables with the function itemdata(); I'm creating object instances of this class and adding them to another object through this: //Item ...
-6
votes
2answers
43 views

I can't write a python average function that will average 3 input integers from user. (average has to be in float) [closed]

Can't write a functional python code that asks users to enter three integers, pass through a function named (avg) and will return the average as a (float) value.
0
votes
0answers
125 views

Pig ERROR 1066: Unable to open iterator for alias returned from UDF

I am trying to load up my own UDF in pig. I have made it into a jar using eclipse's export function. I am getting this 1606 error when running my pig script. I am not sure B = .. as I can dump A, but ...
0
votes
3answers
79 views

How to print out 2d arrays with function in C++?

I am trying to make a function that prints out two dimensional arrays. I did one that prints out 1d arrays. #include <iostream> using namespace std; void printArray (int theArray[],int ...
0
votes
1answer
31 views

Pig error 1070 when doing UDF

I am trying to load up my own UDF in pig. I have made it into a jar using eclipse's export function. I am trying to run it locally so I can make sure it works before I put the jar on HDFS. When ...
1
vote
1answer
60 views

inserting result of a function into a table

I get consequent 24 months from the following table valued function. I need to insert these months in another table where the result should be like this: Week Period 1 2010-02-01 2 ...
0
votes
1answer
41 views

Cannot locate user defined functions in SQL Server 2008

First time using SQL Server 2008 this morning. I am trying to find a user defined function that I created. I cannot locate it in the "Programmability>Functions" branch of the object explorer. Here is ...
2
votes
1answer
27 views

How can I define a vectroized function to make a list of 2 by 2 matrices?

I'm trying to define a function that return a 2 by 2 matrix. Specifically, I have: def f(d,n): return scipy.mat([[1,d/n],[0,1]]) This works fine when d and n are scalar input. But if d and n ...
1
vote
3answers
47 views

Adding a column to a data frame with a multi-parameter user defined function in R

I have a data frame 'x' with 8 integer columns (and about 1000 rows of data). I have created a UDF 'test' that takes 8 integer parameters and return a single value. I have tested the UDF by passing it ...
-2
votes
5answers
97 views

PHP Code to generate random ID number for database [closed]

Here is one for those well versed in PHP as well as MYSQL. I'm looking for a way to generate unique but yet random long numbered IDs for each entry into the database. I don't want it to start with ...
0
votes
0answers
21 views

differentiate the error function

Beginner's question: I have an expression for which I had to define the error function: erf <- function(x) 2 * pnorm(x * sqrt(2)) - 1 I want to find its max- and min points, but deriv() will not ...
0
votes
0answers
69 views

Remote table-Valued Function Calls are not allowed

How can I make this work?Im running a table valued function from a remote linked server. i tried adding no lock to this 4 part naming but still i get the same error. Im using mssql-2008 select * from ...
0
votes
3answers
51 views

writing user defined functions

I am new to writing functions and I'm not really sure where to start. Below is a subset of a data frame named m1 for this example. I would like to write a function that will go through the data set ...
1
vote
1answer
49 views

How a function can take array or set values as parameter(IN) for an user defined function in PostgreSQL

I was about to make an user defined function to implement faceted search in a hypergraph based database where the function will return facets with counts. problem is I need to pass the set of fields ...
0
votes
0answers
12 views

can we use a class as UDF return value

I have a class-module CTest: Option Explicit Public Function TestFct() As String TestFct = "Test string" End Function And a public UDF that returns an instance of that class: Public Function ...
0
votes
0answers
121 views

SQL Server 2008 Computed Column / Trigger / Function to link multiple tables and enter data into another table

I've got the following problem, which I'd like to solve in SQL Server 2008. I have a table Products, each product with a range of up to 3 different areas, which contains information about the total ...
0
votes
2answers
38 views

Changing values in matrix in matlab via a function call

I have a matrix full of zeros. I would then like to change one 0 at a time to the value one. It has to be me deciding which element I would like to change. I have tried the following: classdef ...
1
vote
1answer
33 views

VB Function error message

So I want to create a function to calculate the 'cost' of a solution to a problem. I have created a 1 dimensional array Sum(m) that contains integer values. This is referenced in a different sub ...
0
votes
0answers
34 views

Writing a Hive UDF using jRuby

Can it be done? Here's a test UDF I had tried writing: java_package "com.foo.hive.udf" java_import org.apache.hadoop.hive.ql.exec.Description java_import org.apache.hadoop.hive.ql.exec.UDF ...
0
votes
1answer
48 views

Resursive function calling in user created smarty functions in smarty plugin directory

I am trying to write a smarty function inside smarty plugin directory. It is a recursive function . It is working well in normal php files and will generate a drop down select box. Now I would like to ...
0
votes
2answers
99 views

How to loop through the resultset of query in the sql server user defined function?

I want to apply loop in the resultset of query in the user defined function in sql server. Here is the query: select acc_no, balance from sav_acc_mcg where scheme_id ='001' This query gives a no. ...
2
votes
4answers
90 views

going nuts trying to write a simple function that operates on one column of a dataframe

I am trying to write a function that "variabilizes" the ddply call: december <- ddply(adk47, .(PeakName, Elevation), summarize, needThese=if(sum(dec) == 0) "needThis" else character(0), ...
0
votes
0answers
43 views

Convert Extended Stored Procedure to User-defined Function

I have a .dll which have attached to SQL Server using an extended stored procedure. Is there any way to use the dll in a function?
0
votes
0answers
20 views

Heroku PostgreSQL 9.1 , copying user defined functions

I have a production database in Heroku . I use PostgreSQL 9.1 I want to get a test environment with test database. It doesn't matter for me where the test database should be - on local or in Heroku. ...
0
votes
0answers
57 views

Extending Hive: writing a UDF that does both Map and Reduce operations

I am working on a project to extend Hive to support some image processing functions. To do this, we need to read in an image, break it up into multiple files, pass each into a separate Map task that ...
0
votes
0answers
60 views

I want to write a User-Defined Function for SQL Server with Visual C++

I want to write a SQL Server User-Defined Functions with Visual C++. before this i wrote a dll and brought to SQL Server as Extended Stored procedure. but this page said that the way is Deprecated ...
2
votes
1answer
46 views

Is it possible to write a UDF in VBA that conatins a period in the name?

Excel 2010 ships with some functions that contain a period in their name. For example STDEV.S and PERCENTILE.EXC Is it possible to assign a name to my own function with a name such as ...
2
votes
1answer
109 views

Operand type clash using user defined table type on SQL Server

I have created a user defined type (with script to CREATE) given below: CREATE TYPE [dbo].[udt_ProductID_SellingPrice] AS TABLE( [Product_Id] [int] NOT NULL, [Selling_Price] [money] NULL, ...
0
votes
1answer
115 views

Let MySQL AFTER INSERT trigger fire after transaction finishes

I have a mysql database, where entries are added in two related tables within an explicit transaction block. When the transaction finishes successfuly (and only then), another process should be ...
3
votes
2answers
138 views

Delphi Firebird UDF return only one char

I'm using Firebird 2.5. I'm trying to write a Delphi XE2 UDF to return some string from some input params. Here is the function in Delphi: function FormatRasaSingle(var formatRasa : PChar; var ...
0
votes
1answer
174 views

How to get multiple values along with null values in sql server and ssrs

I am working on this SSRS report, where user is asking me to create a report that has three parameters: Term, Student Status, and Admission Offer. Description: There are following distinct admission ...
1
vote
3answers
54 views

Return a table from a User defined function

CREATE FUNCTION dbo.ta_OTMultiplierstest (@id int) RETURNS nvarchar (100) AS BEGIN DECLARE @text nvarchar(100) set @text = ( SELECT CONVERT(nvarchar(5), b.Duration), CONVERT(nvarchar(5),b.Mon), ...
3
votes
1answer
164 views

Passing a range to Excel User Defined Function and assigning it to an array

I am trying to pass two ranges - multiple rows single column - to a user defined function in Excel 2007, then assign it to an array for processing. Can anybody tell me how to assign such range ...

1 2 3 4 5 19