A function (also called a procedure, method, subroutine, or routine) is a portion of code intended to carry out a single, specific task.
0
votes
1answer
41 views
C++ Function and variable anomally
I'm using Code::Blocks to write a card game. I seem to be having trouble with this one function. For some reason, the variable 'card' gets jambled up somewhere in this. heres the code:
void ...
1
vote
5answers
65 views
Why should or shouldn't we prefer a macro that accepts arguments over a function that does the same job?
Following are two programs that give the area of the circle when the radius is passed as argument.But in the first program, macro.c, I am using a macro for the job ,while in the second,function.c I am ...
0
votes
5answers
53 views
Correct filter function [closed]
def isUpper(x):
if ord(x)>64 and ord(x)<91:
return True
else:
return False
def isLower(x):
if ord(x)>96 and ord(x)<123:
return True
else:
...
-1
votes
1answer
28 views
Cannot redeclare a function previously declared [duplicate]
After I have instaled in my site one script, I have an error:
Fatal error: Cannot redeclare ae_detect_ie() (previously declared in /home/xdesign/public_html/Powerful/config.php:24) in ...
0
votes
1answer
34 views
Want to pass a variable to node async's map method
I'm using node async, and I'd like to pass a variable to the method that it uses within the second parameter... e.g:
async.map(submissions, addScore, function(err, submissions) {
if ...
0
votes
2answers
40 views
Using a variable from a function outside the function
Im writing this basic Tk program that can open text documents but i can seem to get it to work
Here is my code:
from Tkinter import *
from tkFileDialog import askopenfilename
def openfile():
...
0
votes
0answers
22 views
Why Visual Studio Ultimate Instrumentation C# profiling doesn't include called functions within same class?
I'm using the Visual Studio 2010 profiler to try and find what functions within a certain project are taking up the most time. These functions are within a different project than the main application ...
1
vote
1answer
49 views
JQuery equal heights on click for individual expanded text
I have a page set up nicely (JSFiddle) with a photo and expanding bio when you click the persons name (e.g. "Jane Doe"). I'm using an equal heights plugin to keeps the columns to match each other, ...
0
votes
0answers
36 views
Python - Function to open a picklefile?
Suppose I want to write a code that interconnects one function to another. And in each function, there is an argument to use the previously written cPickle file. For example:
Function 1 takes 2 ...
0
votes
2answers
61 views
C++: Pass a function from one function to another
I'm trying to implement a quicksort algorithm to sort an array filled with objects of type "Movie" by one of 4 different criteria. Each movie object contains a ranking, number of votes, rating, and ...
0
votes
2answers
36 views
jquery .on() executing function before event occurs
var MobileMenu = {
menu: function () {
$('#navigation').toggleClass("open");
$('body').toggleClass("push");
}
}
$(function(){
$(".icon-menu").on("click", ...
2
votes
1answer
187 views
Strange looping at end of function body call C++
I am writing a game program in C++ and have encountered an odd problem that seems to be unique to this function.
When this function is called, it executes just as expected all the way through to the ...
1
vote
2answers
49 views
Comparing Array Key values to determin conditional statements the OOP way?
I have been looking at this problem for quite sometime and finally created my answer.
I have three array keys that will output different values. The condition of each key will either be true or NULL ...
2
votes
1answer
207 views
getting started with cython by using cdef
I dont understand how to setup and run code with cython.
I added cdef, double, etc to pertinent pieces of my code.
setup.py of course the name hello isn't being used.
cython doc
from distutils.core ...
1
vote
1answer
36 views
Error returning structure from dll function in python
I have a dll written in C exporting this function:
typedef struct testResult_t {
int testId;
int TT;
double fB;
double mD;
double mDL;
int nS;
int nL;
} TestResult;
...
-1
votes
1answer
29 views
Why are some of the functions missing when I call a module I created from another script?
I'm working with a module I created a while ago, where I have a bunch of functions I keep re-using. Today, I added a new one but when I try to call it from another script, I got the error ...
0
votes
0answers
22 views
AJAX Function: Show/Hide Multiple Elements
I've looked through many of the threads here for an answer and can't seem to find one.
Essentially, I have multiple thumbnails, which when clicked show an element. The problem isn't in the ...
1
vote
1answer
80 views
Exception being raised as I enter into function before code can be executed
As always, I'm probably missing something obvious here. I can't post the entire source code, because it's work-related but I have a templated Matrix class with a mulMM (multiply Matrix by Matrix) ...
2
votes
2answers
35 views
keep image source changed with a function
For a tic tac toe game, I used the following code to change an image source to an 'x' or 'o':
var player = 1;
function changePicture(picture){
if(player === 1){
...
-2
votes
1answer
52 views
Javascript function always returns true?
I have this function which is a property of an object,
Layer.prototype.mouseInBounds = function() {
// Return value
var ret = true;
// Layer mouse co-ordinates are not valid
if ...
1
vote
1answer
29 views
How can I call a Python instance's unspecific method by its member function name?
class worker:
def foo(self):
pass
def foo1(self):
pass
def foo2(self)
pass
The worker instance will have several foo* format member function(the number of foo* ...
1
vote
2answers
72 views
c++ monitoring function without signature
I want to monitor an external program using dll injection
I managed to follow this tutorial and it work
http://www.codeproject.com/Articles/4118/API-Monitoring-Unleashed
Now i want to be able to ...
0
votes
5answers
126 views
Using same variable in two functions
I have two functions read() and write(). I read a file in the read() function and store a line in the header in a variable. Now i want the write() function to write that same line to a new file. But ...
-1
votes
0answers
89 views
if/else statement returning incorrectly
I'm having real difficulty attempting to get an if/else statement to return true. Towards the end of the code there is an interrupt service routine. Within it there are 3 if statements related to the ...
-2
votes
1answer
66 views
Jquery on ready conflict [closed]
I'm having problem executing two document ready functions in jquery. I've searched for answers, but none fixed this issue.
The problem is within this two functions, but some others stopped working ...
0
votes
4answers
28 views
Javascript form validation return
I am slightly new to javascript and I'm starting to understand how this coding mechanism works. I created a simple html form with a number of fields. I am using javascript to acquire the data from the ...
0
votes
1answer
13 views
Rank Across Worksheets
I have 4 worksheets, named Apples, Pears, Bananas, Oranges (in that order in the workbook) with tables of data in them. The data is arranged in exactly the same format. I wish to rank the number of ...
-1
votes
0answers
13 views
Ok i need help to write a script and functions
The goal is to create a script that retrieves data from the user sitting at the keyboard.
Using the read command to read a value into a variable. Space permitting the users input and prompt should be ...
2
votes
1answer
34 views
“Object Required” when caling function in sub in VBA Excel
In my VBA program for excel; I have a function called "ParamCheck" which get four "double" variables, checks them and returns a message as "string".
Function ParamCheck(airSpeed As Double, FCUvalue ...
0
votes
2answers
61 views
Instance methods [closed]
........................................................................................................................
-4
votes
1answer
31 views
How to plot a several functions in matlab for n converges to infinity? [closed]
Can anybody help me and tell me how to plot these functions in matlab:
n!*log(n)
sqr(n)
(n+1)!
log^2(n)
n
log(n^n)
Where n is a natural number and converges to infinity?
-2
votes
0answers
35 views
Could someone help me with this function plot? [closed]
I have the math relations between Pc, N and CW, as shown in Fig. 1.
Now I want to set Pc's value as 0.05, and plot the function of N and CW. (the first equation in Fig. 1 changed to 0.05=1-Pt-Pi, and ...
0
votes
0answers
14 views
Getting ifstream from istream and calling functions via overloaded >> operator
I've created an object, PDBParser, to extract information from a PDB file. Now I am trying to overload the >> and << operators so that I can use them from the main as so:
inFile >> ...
0
votes
1answer
47 views
Call PHP functions twice removed
What I currently have are a few php files with different functions that need to be called at the start of every page.
Instead of calling each php file and the necessary functions, I'm thinking of ...
0
votes
1answer
31 views
Execute function on console close c++
i'm working with dynamic memory allocation and i need to ensure the memory is cleared if a user manually closes the console window.
Is there a way i can call a function when the console window is ...
2
votes
1answer
160 views
Why can't I pass this object as an argument?
Background:
Writing a client that consumes a web service, in C# using .NET 4.0. Proxy class includes an object of type record, which is populated from a SOAP response from the web service.
...
-2
votes
2answers
31 views
Globals not dividing?
MAX=100
CURRENT=50
def divide():
global MAX
global CURRENT
print float((CURRENT/MAX))
divide()
Can someone tell me why this prints out 0.0?
-1
votes
1answer
65 views
The right way of using php class? [closed]
$GLOBALS['IPv4_Netmask_Map'] = array(
0 => "0.0.0.0", 1 => "128.0.0.0", 2 => "192.0.0.0", 3 => "224.0.0.0",
4 => "240.0.0.0", 5 => "248.0.0.0", 6 => ...
0
votes
2answers
33 views
Javascript function data outside of a function
I'm trying to create a simple javascript game and I'm running into a problem accessing a function's data outside of it.
This code works perfectly.
window.onload = function() {
var FPS = 30;
var ...
0
votes
3answers
36 views
referencing objects in different functions as3
I have an object in my mouse event functions that I want to reference in my time function.
Example, I basically created tiles and have mouse events:
var cell:MovieClip = new Tile();
...
1
vote
4answers
77 views
Excel VBA WorksheetFunction in custom function (not sub)
As far as I can tell, Excel wont let you use WorksheetFunctions in a vba FUNCTION (NOT A SUB or SUBROUTINE). Is there a way to use WorksheetFunctions in a FUNCTION? If not, is there simple alternative ...
2
votes
1answer
44 views
splitting up strings to x amount of characters
I am trying to make a decrypter that decrypts code from the encrypter I made. I am getting this type error when I run the code though
getcrypt = ...
0
votes
0answers
46 views
jQuery & AJAX - using return value in multiple places
I'm using jQuery (and new to it) to do an AJAX call that queries a table & returns a value. The URL has in it a time parameter, and what is being returned is a Shift Number. The XML being ...
1
vote
3answers
68 views
Returning void from a double function?
I have a function which is a double and normally returns the new value for a variable, but sometimes I don't want to change the variable and I would like to signal that by returning a special value, ...
0
votes
2answers
18 views
Overriding versus function pointers
Why do programmers prefer overriding to using function pointer fields?
Performance benefits? - Not that I know of.
Is it code readability? - No, the syntax is pretty much the same.
The only ...
1
vote
0answers
58 views
Programming a Z-Domain Function in C
I'm trying to create a simple PID simulator in C. It is a simple cruise control system and I have chosen to model my system as a low pas filter.
I'm having difficulty writing my mathematical model in ...
0
votes
1answer
40 views
Fetch other after match other string using regex in asp.net
hi guys i have to create a function in which i have to call a regex so that when that regex is being call it match a string but store other string in the datatable for example i have string like ...
0
votes
5answers
61 views
Pass references by value Java [duplicate]
I have the following code:
public class PassReferenceByValue {
static void modify(String m)
{
m = "Else";
}
public static void main(String [] arg)
{
String ...
-1
votes
1answer
22 views
PHP Passing by value to function large objects and modifing small part of it [closed]
I read a lot that passing by reference to functions in php is wrong if we don't really need to change original object and we want to increase performance. So let's say I'm passing a quite large object ...
0
votes
1answer
29 views
DataTables mRender “object is not a function” error
I am using DataTables to create a table. After I init the table, I would like to change some settings that control how one of the columns is rendered, like so:
var st = ...





