The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
41 views

Python: Various Lists To Cartesian Product, Variable Length

I want to create words or rather combinations from three different arrays. The output should be a Cartesian product with itself and the other array with variable length. Example: array1 = ["a", "b", ...
0
votes
0answers
24 views

Length of multidimensional WebMethod parameter is giving only first dimension

From what I understand Array.Length of a multidimensional array is supposed to report the total number of elements of all dimensions. ...
2
votes
1answer
88 views

where to place default value parameter in variable-length function in c++?

in variable-length parameters function, the '...' must be place last. And default value enabled parameters must be last, too. so, how about both needed in the same one function? Now I have a log ...
2
votes
3answers
118 views

Number of Unique Obs by Variable in a Data Table

I have read in a large data file into R using the following command data <- as.data.set(spss.system.file(paste(path, file, sep = '/'))) The data set contains columns which should not belong, and ...
0
votes
1answer
38 views

does BIT fill unused space past 1 byte?

My tables will probably have very large row lengths. If I'm reading correctly, a BIGINT with a value of 1 will take up the full 8 bytes. ...
0
votes
2answers
108 views

Shift and masking in C

I have this problem. I have a payload that dinamically change its length. If I don't cut this payload, I will have also informations that are rubbish for me. So I want to cut the payload in base of my ...
4
votes
1answer
53 views

Odd behavior of function with variable number of parameters in C

I have the following C function with a variable number of arguments, which is supposed to search the char* word through a hashtable and write true or false in a file which, if specified, is the second ...
-3
votes
1answer
128 views

Manipulating an Fsharp list

Ok so i've been playing around with F# the last few days and found some tutorials kicking around online (no solutions!) If i had the following list- let new = [ (1808,"RS"); (1974,"UE"); ...
0
votes
1answer
241 views

Node.JS convert Variable-length binary data to jpeg or png?

I was wondering how to convert Variable-length binary data(255216255224016747073700110010100255) to a jpeg or png to the web browser? Example Code: var Connection = require('tedious').Connection; ...
0
votes
1answer
311 views

T-SQL UDF scalar function to return char of variable length

I wish to write a User Defined Function that will return a char value that is sized according to an input parameter. I'm not sure it is even possible, but I thought I'd ask anyway. So I have a query ...
3
votes
1answer
79 views

database table design for storing different sized datasets

I am designing a Microsoft Access database to store results from lab equipment. They are in the form of hundreds of lists of frequency vs. response curves which I have previously stored rather ...
0
votes
1answer
95 views

What is this variable-length integer encoding?

I am documenting an old file format and have stumped myself with the following issue. It seems to be that integers are variable-length encoded, with numbers <= 0x7F encoded in a single byte, but ...
0
votes
5answers
67 views

using .length on vars that don't have the length property results in crash

I have a big array which contains all kind of types (booleans, arrays, null, ...), and I am trying to access their propiety arr[i].length, but some of them obiously fail to have length. I wouldn't ...
-4
votes
1answer
2k views

Array length undefined [closed]

I'm trying to get the length of a multidimensional Array as follows, but when I test it with alert() I get undefined. I would like to know how many items has the parent array (myArray), as I would ...
0
votes
3answers
283 views

Limiting the length of an input to x amount of digits

I'm running a java program I created that stores data inputted by user. Specifically 4 array lists which are songName, songArtist, songYear & songAlbum. I have a user input for "songYear" and I ...
1
vote
1answer
63 views

Use concat and maintain length of variable

I'm trying to use concat on some variables. These variables have been declared as chars: declare v_order_date char(10); declare v_quantity char(11); declare v_plant char(100); I have a cursor where ...
2
votes
4answers
305 views

Finding length of all arrays multidimensional array, Java

I would like to use a multidimensional array to store a grid of data. However, I have not found a simple way to find the length of the 2nd part of the array. For example: boolean[][] array = new ...
1
vote
0answers
56 views

Understanding Hadoop VIntWritable compression

I know its a bit shame, but i don't understand the compression technique in VIntWritable and VLongWritable. Can someone elaborate with an example Code snippet from WritableUtils.java public static ...
2
votes
1answer
151 views

Editing a variable length list within another

Can Steven Sanderson's approach here be modified to edit a variable length collection within another variable length collection without dirty hacks? The problem is that when there is one collection ...
7
votes
1answer
1k views

MVC 4 - More Elegant way to Edit Variable-Length List of Items?

The best advice I found for editing a variable-length list of items was written for ASP.Net MVC 2 in 2008. ...
2
votes
6answers
172 views

a C program crashes, using a double-type variable length array

I am reading C Primer Plus these days and here is the code I wrote for the programming practice No.4 in Chapter 10, finding the index of the largest number in a double-typed array. I used variable ...
0
votes
1answer
111 views

Making compatible (equal) dimensions for two vectors in R

I have a vector called classes that is the output of an analysis that used listwise deletion. As a result, the cases included in classes is a subset of the entire dataset -- some cases were dropped ...
3
votes
0answers
257 views

Need a good overview for Succinct Data Structures [closed]

Cross posted: Need a good overview for Succinct Data Structure algorithms Since I knew about Succinct Data Structures I'm in a desperate need of a good overview of most recent developments in ...
0
votes
1answer
195 views

One way hash with variable length alphanumeric output

I need to one way hash alphanumeric + special chars(ascii) strings of variable length (10-20 chars). The output should be of variable length but max 25 chars long, alphanumeric and case insensitive. ...
-1
votes
3answers
236 views

variable-length array and segmentation fault

In the following code if I declare the variable-length array 'int array1[x]' before scanning the desired length of the array 'x', I receive ' segmentation fault (core dumped)' while execution. ...
1
vote
3answers
188 views

Center text inside relative div with no size

I have following (simplified) HTML structure: <table> <tr> <td> <div class="PromptContainer"> <span class="Prompt">Prompt text</span> ...
6
votes
3answers
640 views

Get max length of multi-dimension tuple

My tuple looks something like this(for a particular set of generated value) tTrains = [ (3, ), (1, 3), (6, 8), (4, 6, 8, 9), (2, 4) ] Please ignore the extra (,) appearing inside them. They ...
2
votes
2answers
211 views

Method that takes in an undefined number of arrays

A while back I was playing with methods using variable-length argument lists (java) that get defined as below public static int[] makeArray (int... a) { return a; } this is a silly program but ...
1
vote
1answer
303 views

ANTLR: parsing header followed by binary data chunk with unknown length

There in a data stream are two packets. Each has the header followed by some binary data with unknown length, until another header is found, or EOF is reached. Here is the data: HDR12HDR345 HDR is ...
1
vote
2answers
870 views

How to get the length of character type variable in RPGLE?

Is there any easy way to directly return the length of character and type variable in RPGLE? The length I am talking about here is not the length specified in the D-spec. I am talking about the actual ...
7
votes
10answers
3k views

Python: finding whether a string starts with one of a list's variable-length prefixes

I need to find out whether a name starts with any of a list's prefixes and then remove it, like: if name[:2] in ["i_", "c_", "m_", "l_", "d_", "t_", "e_", "b_"]: name = name[2:] The above only ...
1
vote
1answer
210 views

Javolution - reading variable-length string

How to read variable length String from a C struct using Javolution API? For example the code below is used to get a fixed size String- public final UTF8String data= new UTF8String(100); Can anyone ...
4
votes
6answers
366 views

Why is void f(…) not allowed in C?

Why doesn't C allow a function with variable length argument list such as: void f(...) { // do something... }
1
vote
4answers
114 views

Write named list of strings with variable length and number of strings to a text file in R

I'm relatively new R user and still learning the basics. I have a named list xx those entries looks like this: > xx[100:105] $`15LOX-1` [1] "207328_at" $`16.1` [1] "215946_x_at" $`16.2` [1] NA ...
4
votes
1answer
1k views

MVC 3.0 Editing a variable length list and using the PRG pattern

I created a view with a variable length list as described here: http://blog.stevensanderson.com/2010/01/28/editing-a-variable-length-list-aspnet-mvc-2-style/. I am trying to use the PRG pattern with ...
0
votes
1answer
2k views

javascript object max size limit at 10000 chars

When I run this code, the variable items only appends 9999 chars and rest is truncated. I got a few answers in the previous post but the problem still persists. var items = []; for (var i = 1; i < ...
8
votes
3answers
13k views

javascript object max size limit?

I am to trying to pass a javascript variable to the server side using jquery.ajax method. I am trying to create a json string. But when the length of variable reaches 10000, no more data is appended ...
1
vote
2answers
384 views

GIF format - separate variable-length codes

I trying to parse GIF format and have one problem with reading image data. This data represented like bit array, containing variable-length values. ex: 0010-1010-0010-0000-00111-10000-11111... ...
1
vote
2answers
283 views

Does having variable-length columns slow selects on InnoDB table?

With MyISAM having variable length columns (varchar, blob) on the table really slowed queries so that I encountered advices on the net to move varchar columns into separate table. Is that still an ...
0
votes
1answer
329 views

variable length sequence, first bit indicating end of sequence, preon

How would you parse a variable length sequence of bytes where first bit (BigEndian) indicates if another byte is following using Preon? Example byte[] bytecode = new byte[] { (byte) ...
3
votes
1answer
121 views

Initializing VLAs

The following line of code, which creates a variable-length array on the stack: char name[cpfs_params(cfdata->cpfs)->namemax + 1] = {'\0'}; Generates the following compiler diagnostics: ...
6
votes
3answers
239 views

How do you prevent variable-length arrays from crashing when there is not enough memory?

Before variable-length arrays were supported, I would dynamically allocate them like this: int foo(size_t n) { int *arr = malloc(n * sizeof int); if (!arr) return ENOMEM; /* not enough memory ...
3
votes
3answers
1k views

Sending Variable-Length Data Over TCP Socket

My application needs to send/receive xml data via a tcp socket. There is no way to include any kind of a fixed-length header containing message length. As far as I understand, data transmitted over ...
3
votes
2answers
263 views

Freeing variable-sized struct in C

I am using a variable-sized C struct, as follows: typedef struct { int num_elems; int elem1; } mystruct; // say I have 5 elements I would like to hold. mystruct * ms = ...
1
vote
5answers
855 views

Parsing String into multiple variable length String (C#)

I am currently trying to convert a VB6 program into C#. There was extensive use of string splitting into structure. For example, Dim Sample AS String Sample = "John Doe New York Test Comment" ...
7
votes
3answers
379 views

What does (int (*)[])var1 stand for?

I found this example code and I tried to google what (int (*)[])var1 could stand for, but I got no usefull results. #include <unistd.h> #include <stdlib.h> int i(int n,int m,int ...
1
vote
1answer
1k views

Variable length Blob in hibernate?

I have a byte[] member in one of my persistable classes. Normally, I'd just annotate it with @Lob and @Column(name="foo", size=). In this particular case, however, the length of the byte[] can vary a ...
6
votes
1answer
3k views

Are variable length arrays possible with Javascript

I want to make a variable length array in Javascript. Is this possible. A quick google search for "Javascript variable length array" doesn't seem to yield anything, which would be surprising if it ...
0
votes
2answers
650 views

How to create a variadic (with variable length argument list) function wrapper in JavaScript

The intention is to build a wrapper to provide a consistent method of calling native functions with variable arity on various script hosts - so that the script could be executed in a browser as well ...
2
votes
2answers
871 views

Objective-c - Passing in variables to a variable-length method

I've got an array with items, and I want to pass these in to a variable-length method. How do you do that? I.e., I've got this (for example): NSArray *array = [NSArray arrayWithObjects:@"1", @"2", ...

1 2