-3
votes
0answers
32 views

Passing C++ array data to a main program from a function

I have been trying to write a C++ function that reads in a text file of financial data and passes it back to a main program. The last 4 parameters that must be read in are arrays of a dimension ...
0
votes
1answer
22 views

ANSI C, Garbage Collector and Function enviroment Arrays, Exiting the function will cancel the array?

I need to code a function in which i declare a new array and then i need that array to stay in the memory... I was wondering which is the best programming practice to attain this result, and i would ...
0
votes
2answers
17 views

JavaScript get days with words, five ahead of current day

I would like to put 5 upcoming day names in some divs on my website. I've created array for day names, then I'm calling values from it and adding number of days. That method works only for 1st day ...
0
votes
1answer
44 views

Simple Javascript Math Function- addition/not working?

This is my function: var ans=(X*X)/(Y+Z); When I enter 10, 20, and 10 - respectively- the addition bit comes out as 2010 and not 30. How can I fix this?
1
vote
5answers
71 views

Why does this function in Java doesn't affect the result?

class Test { public static void main(String[] args) { int[] list = {1, 2, 3, 4, 5}; reverse(list); for (int i = 0; i < list.length; i++) { ...
1
vote
1answer
10 views

Can you pass a fixed-size array as a GLSL function parameter?

In a GLSL shader, I want to create a function that looks a bit like this : void MyFunction(out float results[9]) { float value0 = 3.1546; float value1 = 42; // whatever value /* ...
0
votes
3answers
50 views

Returning the results of hundreds of columns into an array

I have a table with hundreds of columns. I need to take the result of every column (except one) and put them into an array and bring back the rest of the results. Here it was the table looks like: ID ...
2
votes
2answers
34 views

How do I store an Object's functions pointers in an array?

I am trying to store function pointers of an object's functions in an array.But it's giving me problems when I want to access another property of the object within the function.Could any one solve ...
0
votes
1answer
33 views

php return array from function returns NULL

Still just learning PHP so sorry if this is stupid!! I have a function that loops through a mysql adjacency table. I would like to return this as an array. It seems fine, in that if when I return in ...
0
votes
2answers
26 views

Matlab arrayfun mapping using two arrays?

How would I go about mapping the values of TWO arrays to a function and returning the result as an array? arr = [1, 2, 3]; arr2 = [1, 4, 5]; val= arrayfun(@(x) func(arr, arr2)) function val = ...
0
votes
2answers
30 views

Passing arrays of varying size to setters/functions in Php

I am relatively new to PHP and have searched quite extensively but can't quite figure out the solution to my problem. I am trying to figure out how to use setters in a class where the variable being ...
-1
votes
0answers
67 views

What is wrong with PHP shuffle and array_push? [closed]

$this->current_set=$this->dbh->query("SELECT DISTINCT id FROM $database_name WHERE id != '".(string)$this->answer['id']."' ORDER BY rand() LIMIT 2;"); //$this->complete_set="" //echo ...
0
votes
3answers
59 views

Create an array using a function - Objective-C++ [duplicate]

I want to create an array from a function. The following obviously works, however because my arrays are much larger I want to save the space and the time writing them out. GLfloat ...
1
vote
1answer
43 views

Can arrays inside functions be initialized with the return value of functions?Is “int arr[2]={strcmp(”a“,”a“),strcmp(”3“,”5“)};” correct?

Aren't only variables of static storage type expected not to be initialized with return values of functions as those are not considered constants?Going by that argument,isn't the following declaration ...
0
votes
1answer
32 views

Php Division remainders & Arrays

I have an array $blocks It has 4 items with constant values A, B, C, D $blocks["a"] = 20; $blocks["b"] = 1000; $blocks["c"] = 10000; $blocks["d"] = 50000; Another function returns a value, ...
1
vote
1answer
39 views

Call function with unlimited params [duplicate]

I have array: Array ( foo => 1, bar => 2 ....... ) And function with unlimit params, now I need to call function like this: $x = myFunc(array('foo'=>1), array('bar'=>2),...); ...
1
vote
1answer
44 views

Can I convert an array in such a way to Pointer and return a pointer to a constant?

Can I convert an array in such a way to Pointer and return a pointer to a constant ? It is right in terms of memory allocation ? const int* convert_vector_to_pointer(std::vector<std::pair<int, ...
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
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, ...
-6
votes
2answers
56 views

Use function options in javascript

I have a function like this: doitman([item1, item2, item3], option2){ to do something...; } I want to read item1, item2, item3 and e.t.c like array and use them in function like a parameter.
0
votes
3answers
52 views

No matching function for call error

I don't understand what's wrong here. I've cut what i believe to be the non relevant part of the code to make it easier to read. The debugger shows the error below at the line "check(grid, n, q, ...
2
votes
1answer
29 views

Unable to add to array from function using arguments

I have a function getPrice($_SESSION['external']); function getPrice($position) { //Here I perform SQL functions using $position['arraykey'] //This works //Here I want to ...
2
votes
2answers
81 views

Is it possible to get the length of a string including literals

For example "hello\0world" would return a length 12 because there are 12 characters in the string.
-7
votes
0answers
41 views

please help i would like to know whats wrong with this program,please ASAP [closed]

hey so in my code there's an array,in this array third of the numbers in it are divided by 3 without a remainder,the other third are numbers that have the remainder oof when divided by 3 and the last ...
-10
votes
2answers
91 views

Write a java program for a report card [closed]

Can anyone please write a java program for a report card that accepts name of students, marks of 5 subjects. Compute total percentage, highest marks, lowest marks. assume that there are 40 students in ...
1
vote
2answers
40 views

In a function prototype it shows an error

it shows cannot find symbol- class string I am writing a program for a report card. This function is to accept names. Pls help public static string accept_name() { String STR[]=new String[40]; ...
-10
votes
2answers
57 views

How to store a returned object from a method in a new object in the main method in JAVA [closed]

It shows array dimension missing. new obj[] = mark_entry(); where mark_entry() is a method.
1
vote
2answers
55 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 ...
0
votes
1answer
34 views

Wrong dataype for in_array

Good morning. I'm currently trying to build a very basic caching system for one of my scripts. The cache is JSON data and contains only 1 key and it's value, but many individual fields, something ...
-3
votes
1answer
67 views

Using If/Then with Arrays

Hi I'm trying to prepare an if/then statement for my program using arrays. However, I am receiving an error, below is my function definition. Error: ISO C++ forbids comparison between pointer and ...
0
votes
1answer
50 views

Will not display in list box VB

So, I'm trying to display the statistics for a soccer teams points scored. At the time this is being executed, the arrays have been already filled and what not. When this form opens, I'd like it to ...
2
votes
1answer
89 views

Implementing the [B,C]=f(A) syntax (function f acting on an array with two or more output arrays)

I have a question which is an extension of other two questions I have recently posted: Implementing B=f(A), with B and A arrays and B already defined and Implementing the B=f(A) syntax by move ...
0
votes
1answer
42 views

Populating an array with values that fall below the averange and calculating the variance

I am trying to select those values from a one-dimensional range of data that fall below the average. Would this code be right? I think there is a problem with how I place them into the array ...
0
votes
0answers
12 views

how can I make a generic function for pushing a class object into an array?

this is my first time asking a question on this form so please go easy on me if I say something stupid! I'm trying to make a tower defense game in actionscript 3 that has enemies and power ups as ...
3
votes
1answer
90 views

How to pass two dimensional array to a function in F#?

I am trying to create a function in F# that takes as input a two dimensional array of integers (9 by 9), and prints its content afterwards. The following code shows what I have done : let printMatrix ...
0
votes
1answer
24 views

AS3 - Functions in Arrays

I've recently started using AS3, and I've ran into a little problem. I want to store some functions into an array like so: testArray:Array = [testfunction(), testfunction2()]; But when I start it ...
1
vote
2answers
68 views

My append function does not work as expected. C++

I am writing my own append function to append a dynamic character array of string array2 at the end of another dynamic character array of string array1, using a static char buffer[50]. But the ...
0
votes
1answer
16 views

Char array size when using certain library functions

When using some library functions (e.g. strftime(), strcpy(), MultiByteToWideChar()) that deal with character arrays (instead of std::string's) one has 2 options: use a fixed size array (e.g. char ...
0
votes
1answer
69 views

Python function which will call a 1D vector values

I have the next sequence of numbers of A array( is an array 1D ) -1.7654142212e-06 7.0737426918e-07 1.63230254789e-06 1.88255344022e-06 5.00966829007e-06 1.88631278169e-06 -4.08751917695e-06 ...
-4
votes
0answers
45 views

How hard would it be to make simple match pictures game in Python? [closed]

I'd like to know how hard would you think it would be for me to make a simple match pictures game. There will be squares you have to click on, and when you click on them they turn around with a ...
1
vote
1answer
40 views

Saving return values of function returning multiple variables in Matlab

I have never used matlab before so excuse this very basic question. Basically I have a function that returns multiple variables, defined like so: function [a, b, c]=somefunction(x, y, z) I know I ...
0
votes
2answers
75 views

C++ Array of Functions

I'm trying to deal with an array of functions, however when I assign the functions to the array (in the class's default constructor) I am greeted with the error message: "void (GameObject::*)()" ...
0
votes
2answers
83 views

How do I pass a pointer to an array of pointers as an argument to a function?

I'm trying to code a robot, and I'm having a confusing situation. I need to pass an array of pointers to objects to a constructor of a class. I can't, however, populate the array before I pass it into ...
0
votes
2answers
53 views

Passing Array to Oracle Function

I am passing an array to a PL/SQL package function. I am doing this to use this array in a query inside the function which has IN clause. My declaration of package looks like : create or replace ...
-5
votes
3answers
77 views

Type 'double' unexpected [closed]

I've written a function which calculates determinant of square array. When I tried to create dynamic array and running program, compiler(Visual C++ 2010) thrown an error C2062: type 'double' ...
0
votes
1answer
78 views

Dynamic array as function argument

In main function of my program I've created dynamic array with number of elements specified in variable(after calculations array is deleted): cin >> bok; double **macierz; macierz = new double ...
0
votes
1answer
54 views

Bash function, array howto?

I'm struggling to wrap my head around Bash arrays, in particular I have this function where I need to load an array; What I have written is this: function list_files() { for f in *; do ...
-1
votes
1answer
33 views

Sorting the output of a function to display from High to Low

I have a struct, defined as this: typedef struct structure { char names[20]; int scores[4]; float average; char letter; } stuff; And from that struct created this array: stuff everything[13]; ...
1
vote
2answers
34 views

Printing an array of strings during a loop

Writing a function that uses a loop to display a small chart of "names" "e1" "e2" "e3" "e4" "avg" and "grade". In the function I'm having trouble printing the elements stored in the "names" array. ...
0
votes
1answer
67 views

passing functions using array and buttons as3?

I have been searching for an answer to my actionscript 3 problem... I'm new to the community and actionscript so please bear with me. I am using an array to store my data and have six movie clips I ...

1 2 3 4 5 19