Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
275 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 ...
6
votes
4answers
5k views

Matrix of unknown length in MATLAB?

I'm trying to set up a zero matrix of variable length with two columns into which I can output the results of a while loop (with the intention of using it to store the step data from Euler's method ...
6
votes
10answers
4k views

Variable Sized Struct C++

Is this the best way to make a variable sized struct in C++? I don't want to use vector because the length doesn't change after initialization. struct Packet { unsigned int bytelength; ...
5
votes
3answers
136 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 ...
5
votes
4answers
1k views

variable-length arrays

I just wonder if there is some overhead of using variable-length arrays? Can the size of array could be passed via command line argument at run time? Why is it introduced, compared to automatic and ...
4
votes
10answers
167 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 ...
4
votes
6answers
178 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... }
4
votes
2answers
466 views

Reading a Struct Within a Struct via PHP's Unpack Function

I want to know how to read a struct within a struct via php's unpack function. When I get an IS_MCI packet, I check it's Type to make sure it's equal to ISP_MCI, and then I check NumC to find out how ...
4
votes
17answers
1k views

Most compact way to encode a sequence of random variable length binary codes?

Let's say you have a List<List<Boolean>> and you want to encode that into binary form in the most compact way possible. I don't care about read or write performance. I just want to use ...
3
votes
1answer
77 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: ...
3
votes
2answers
164 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 = ...
2
votes
1answer
561 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 ...
2
votes
1answer
696 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 ...
2
votes
5answers
1k views

How to implement a variable-length ‘string’-y in C

I’ve googled quite a bit, but I can’t find information on how variable-length strings are generally implemented in higher-level languages. I’m creating my own such language, and am not sure where to ...
2
votes
1answer
5k views

Two-dimensional variable-length array in Cobol

How do you go about defining a two-dimensional MxN array in Cobol of which both M and N are of variable length? Here's the message I get in Net Express when attempting to have a variable array inside ...
2
votes
4answers
5k views

Variable length template arguments list?

I remember seing something like this being done: template <ListOfTypenames> class X : public ListOfTypenames {}; that is, X inherits from a variable length list of typenames passed as the ...
1
vote
1answer
55 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
4answers
76 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 ...
1
vote
3answers
2k 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
114 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
1answer
101 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 ...
1
vote
3answers
886 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 ...
1
vote
5answers
565 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" ...
1
vote
2answers
421 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
vote
4answers
809 views

Difference between variable-length argument and function overloading

This C++ question seems to be pretty basic and general but still I want someone to answer. 1) What is the difference between a function with variable-length argument and an overloaded function? 2) ...
1
vote
5answers
826 views

What is best way to implement variable length arrays?

I want to store a large result set from database in memory. Every record has variable length and access time must be as fast as arrays. What is the best way to implement this? I was thinking of ...
0
votes
2answers
60 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 ...
0
votes
1answer
56 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 ...
0
votes
0answers
161 views

MVC3 Partial View append to page using JQuery and Ajax While editing variable length list “One to Many” form!

I followed the tutorial provided Here, but the part concerning the appending of the partial to the main page is not working at all on MVC3 any help , or any better solution for One to many forms !
0
votes
1answer
282 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 < ...
0
votes
1answer
123 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) ...
0
votes
1answer
682 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 ...
0
votes
2answers
445 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 ...
0
votes
2answers
967 views

C++ qsort array of pointers not sorting

I am trying to sort a buffer full of variable-length records alphabetically in C++. I previously asked how to implement this, and was told to sort an array of pointers to the records. I set up an ...
0
votes
3answers
886 views

C++ as in Java?: vector of vectors with *variable* length of int

My model would best use some v int[30][i][N_i]; structure that is 30 vectors of tuples of ints, where v[0] is a dummy, v[1] are plain ints (N_0 of them), v[2] are pairs of int (N_1 pairs) ... ...