A function (also called a procedure, method, subroutine, or routine) is a portion of code intended to carry out a single, specific task.

learn more… | top users | synonyms (1)

-1
votes
2answers
54 views

How can I convert this fuction into sql server function? [closed]

i'm not that pro in TSQL, i've this function: for (i=1;i<=30;i++) { for (j=1;j<=10;j++){ insert into NAMES values ("","","Name"+i+" - fn"+j", "Name"+i+" - fn"+j", "Numeric", ...
-2
votes
3answers
39 views

move_uploaded_file: not allowed to use tmp_name? [closed]

Question: When you use the move_uploaded_file function, can you keep the name that was created in the tmp_name? or must you always change the name to something else? If you can keep the name of the ...
0
votes
1answer
50 views

Pointer to a function inside a derived type on a module in fortran

I guess I could easily use some help here, since I'm messing around with some fortran 2003 but can't seem to understand how to do things really. The fact is that I need to write a fortran code that ...
-1
votes
2answers
56 views

Why the Functions aren't defined ? PHP

What do I have to do so that I can use the standard php functions without creating an instance of a Math_functions Class ? <?php class Math_functions { public static function ...
-2
votes
0answers
33 views

bypass of sub rountines in php [duplicate]

In the code below I have written a php script to retrieve records from the database and send email and sms to a particular department's students of the user's choice at the front end. I have checked ...
0
votes
1answer
48 views

PhoneGap - Can't Find variable

So I made a simple slideshow in js to display a photogalery in a page, the problem is that whenever I try the slideshow the console shows me the error ReferenceError: Can't find variable: next ...
0
votes
3answers
38 views

Echo multiple strings from a function in PHP

I have tried to create a function that will take two arguments and in theory, echo out the result. After doing some Googling, I got the impression that this should be accomplished using an array, ...
-4
votes
0answers
49 views

My program is skipping a function in PHP

My PHP script was written to send email and SMS when some new information is entered in the front end to members in database. However the email code and SMS code are working individually, but when put ...
0
votes
0answers
33 views

Create custom IN-function t-sql depending levenshtein distance

I am actually not good in functions in SQL, i am more a java/android programmer. But for a school project i need to check if a String is in some array in T-SQL. But i am comparing data from two ...
0
votes
4answers
45 views

Manipulating tables in Oracle

Creating and using pl/sql proceedures which do not interact with data stored in a database are simple to make and execute, but of obvious limited use. But I'm having some difficulty in manipulating ...
0
votes
4answers
68 views

Oracle: function only returning null

The following function is supposed to return information relating to a particular meeting, stored in a meeting table: CREATE TABLE "MEETING" ( "MEETING_ID" NUMBER(10,0) NOT NULL ENABLE, ...
0
votes
0answers
31 views

SQLalchemy - call a query function from another file

I have following question, I want to call a function which is querying my database. So my code like that is working fine, cause I'm calling the function inside the file: #!/usr/bin/python # -*- ...
0
votes
1answer
79 views

Function on Javascipt. Not work

I have a file .js with one function. And starting another class I want to call this function. But do not know why, the function returns nothing. The code I have is as follows: //Valida a data ...
0
votes
2answers
43 views

How to take a value from one jQuery function and assign it to a parameter of another function?

I have a function with a jQuery slider. It sets up a delay time and shows it in the "#slider" div : $(function () { $("#slider").slider({ range: 'max', min: 1, max: 5, ...
0
votes
1answer
53 views

Why the table of my function is not acceptable?

CREATE OR REPLACE PACKAGE PKG AS TYPE RESULT_T IS TABLE OF VARCHAR2(3000); FUNCTION GENERATEF RETURN RESULT_T ; END PKG; / CREATE OR REPLACE PACKAGE BODY PKG AS FUNCTION GENERATEF RETURN ...
0
votes
3answers
53 views

Modifying pointer value

I am having some trouble with some work I was assigned for my schooling. I was told to write a program that modifies a char. I can do that just fine. I just cannot get how to work with pointers. I've ...
0
votes
4answers
65 views

Recursive numeric triangle in python

I'm trying to create a triangle like the following: 1 2 3 4 5 6 2 3 4 5 6 3 4 5 6 4 5 6 5 6 6 Without using while, for in, lists, etc. Just "if-else" cases and recursive functions. I've just ...
1
vote
0answers
59 views

How should I use the cursor in the Function?

I want to use the cursor in the package's function like this: PACKAGE PKG AS TYPE RESULT_T IS TABLE OF varchar2(30); FUNCTION GENERATEF RETURN RESULT_T PIPELINED; END PKG; / create or replace ...
-2
votes
0answers
40 views

Getting started with a php object oriented backend system [closed]

Hello all you coding geniuses. I am working on a backend for an iPhone app in php and I'm trying to make the backend based on a object oriented system. I used to be totally inefficient and have a ...
1
vote
2answers
33 views

JavaScript function arguments statements

My problem is: (only as example, must not make sense overall): // make a function and pass part of the statement as argument function ExampleFunction( argument ) { ...
0
votes
2answers
79 views

Boolean function

I am trying to use a find_if Boolean function to return true if: Z is =<10; name="john" (all lower case) My code: /* predicate for find_if */ bool exam_pred(const exam_struct &a) { if ...
1
vote
0answers
29 views

Incorporating Structure Fields into a Function as Inputs (in MATLAB)

I'm using MATLAB (Mapping Toolbox) to create a large number of lines between different countries. Since there are so many lines, I'm trying to do this using object-oriented programming. This is the ...
0
votes
2answers
39 views

Apply function array_map to an array with others array on it

I have an array which contains others arrays. How can apply the function to the array without calling every member of each array on the main array ($inputarray)? $inputarray = array($product, ...
3
votes
1answer
88 views

Function/Stored Procedure for insert between two tables based on condition

I'm already sorry ... I am quite new to this whole posting stuff, but I am trying my best ... I got two tables ... 'Customer' and 'Rooms' ... a single Customer with a UNIQUE CU_ID is staying in a ...
0
votes
4answers
62 views

Function which will give the names of all items in a folder [duplicate]

Here's what I have to do, but I have no idea where to start: Write a program that allows you to browse images (gif, jpg) from the specified directory. Pictures are subsequently shown in the ...
0
votes
1answer
53 views

how to delay one function until another function completes?

I am having difficulty finding the answer to this question - I suspect because I'm probably not using the right terminology. I am using Meteor. Here is what I am trying to accomplish: Function A - ...
0
votes
2answers
35 views

Advert by categories inside the posts on function.php

I tryiend to add a banner inside the posts by categories. I got the follow code which show a banner after 1000 words. But, for example I want to show a banner if is a category 3 and a different banner ...
1
vote
1answer
35 views

Defining axes in matlab

I'm trying to plot f[t], Fourier series evaluated at 23 for some periodic square-wave with x-axis limits of [0,T] and y-axis limits of [-1 1]. I have a figure 1 which is a plot of ...
-2
votes
3answers
44 views

Function deceleration in matlab [closed]

I just want some advice regarding a Matlab function, more to confirm I am doing it correctly. Here is my code. function [output] = myfunc( input1, input2); output = input1 * input2; Then I call ...
0
votes
2answers
109 views

C++ Is it possible to have a generic function pointer?

In C++ is it possible to make some sort of generic function pointer that points to any function that returns a pointer to some type and takes no arguments? Eg, one type of pointer that can point to ...
0
votes
0answers
26 views

How can i assign static RtMidi callbacks object wise?

i'm using the C++ RtMidi library to read MIDI input from two identical devices (Novation launchpad). Both launchpads 'live' in their own object, open their own MIDI port and (should) have their own ...
0
votes
2answers
23 views

MySQL CREATE FUNCTION breaking on END IF

I'm trying to create a function for calculating distances between two lat/lon points; however, the CREATE FUNCTION is breaking on the END IF; portion of the function body (confirmed by removing the ...
0
votes
1answer
42 views

Jquery function doesn't wait result of Javascript function result why? [duplicate]

I have 2 method. second one calls the first one. When I put an alert function into the first one I can see the return value. But second function see the value as undefined. I couldnt understand why 2. ...
1
vote
2answers
37 views

javascript - moving for loop content into functions

I have a for loop to go through an array and display dates. I've written some code to convert the months from numbers to text. The code looks like this: for (var i=0; i < arrayLength; i++) { ...
0
votes
0answers
18 views

Is it possible to get args name (not the value) sent to a function?

I'm trying to make a very easy function to assign variables to a child variables of a function. The best will be something like this : $this->assign($param1, $param2, $param3); and in the ...
-1
votes
4answers
52 views

C free variables declared inside function

Imagine this code: #include <stdio.h> #include <stdlib.h> #include <string.h> #define MAXSTRSIZE 2048 int main() { char *str; str = get_string(); return 0; } ...
0
votes
0answers
73 views

Seperate Function Decleration and Implementation in F# [duplicate]

I have two functions that call each other. In F#, in order for function A to call function B, B must be declared before the declaration of function A. So when having two functions that call each ...
-1
votes
1answer
48 views

Recursive definition of a vector

I would like to define a list using a for loop and I need to do it using a function of the n-iterate. I have: Initialization In[176]: Subscript[y, 0] = {1, 2, 3} Out[180]: {1,2,3} The function: ...
1
vote
1answer
41 views

Optimizing a function with multiple outputs in Matlab

Say I have a function [f,g,h] = function (x) In the file function.m in Matlab. How can I find the value x, e.g. using fminunc, which maximizes g? The fminunc documentation only handles the case when ...
0
votes
0answers
21 views

Pascal. Specify to use a variable instead of function with the same name>

I'm writing long digit arythmetics. This is a function for adding to longint long binary digits. I need to output the sum inside the function, to debug it. How could I do it, without creating new ...
0
votes
2answers
64 views

Passing a class Member function as an Argument

I have a class as follows and a main method as follows: class Mesh { public: void draw() void draw(){} } int main(int argc,char* argv[]) { Mesh mesh; glutDisplayFunc(mesh.draw); } ...
-1
votes
2answers
49 views

defining several functions in a loop and assigning them accordingly, in python

For defining several functions in a loop I have no problem using the code: U=[] for i in range(100): U.append(function('U_%s' %i, x)) but if I want to also assign some rules to these functions, ...
1
vote
1answer
35 views

Calling functions present in a different file in R

I want my R code to be organised into different file. I have done done that but I am not able to call a function present in another file from my current file. I know it would be a simple thing... It ...
-4
votes
1answer
38 views

Internal Function not showing variables values correctly (JQuery) [closed]

I am have some trouble, I am not able to see the correct values of a variables I have created. I am new to JQuery so please feel free to let me know which mistakes I am making. Thanks for the help ...
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
1answer
50 views

Problems with Python functions [closed]

I am using python to make a command line program that calculates stuff for linear equations. One of my function declarations is like this: def lineSub(): while true: print("This is the Linear ...
1
vote
5answers
68 views

where do I put the distinct in in my code?

I have the following sql code: select upper(regexp_substr(street1, '\S+$')) but I don't know where I should put the distinct keyword to have unique values in the table, because I prints out many ...
0
votes
2answers
31 views

Matlab vector assistance

I am trying to create a column vector in matlab based on two 64x64 double vectors, and iterate through each element in the vector and apply an equation to create a new vector, which will then be ...
-7
votes
4answers
89 views

What's wrong with my function? C# [closed]

I'm trying to create a function in c# but I can't seem to locate what's wrong with the code. I know it's a very basic question but I really need your guys help! Here is my code: public ...
-2
votes
0answers
25 views

can you help writing the code for this prolog function? [closed]

Write a Prolog predicate removeAll/3 which removes all occurrences of the first argument from the second argument (presumably a list) leaving the third argument. (i.e. removeAll(a, ...

1 6 7 8 9 10 375