473,394 Members | 1,750 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

Multi-Dimension Array Question

The input to a function of a 3rd party library I want to use requires a
double**, which is a multi-dimension array of doubles.

I have looked on the net etc and seen several ways of supposedly doing
this, but I don't seem to be able to get them to work. I was wondering
if anybody can tell me what I am doing wrong.

int rows = 10 ;
int cols = 10 ;

double** data ;

data = new (double*)[rows] ;

for (int i = 0 ; i < rows ; i++) {

data[i] = new double[cols];

}

main.cpp(291) : error C2143: syntax error : missing ';' before '['
main.cpp(291) : error C2337: 'rows' : attribute not found; it is neither
a built-in nor a custom attribute that is accessible in the current
namespace

both the error point to the data = new (double*)[rows] line
May I don't need to create the multi-dimension array this way, I don't
know. As mentioned above, I have a 3rd party library function that
requests double** data.

One point is that I won't know the row and column sizes until runtime.

Any suggestions would be much appreciated,

Adam
Jul 23 '05 #1
6 2198
ben
Looks like a Visual C++ bug. The code compiled fine with gcc. Try this:

typedef double* ptr_to_double;

int rows = 10;
int cols =10;

double** data = new ptr_to_double[rows];

//...

delete[] data;
ben

"Adam Hartshorne" <or********@yahoo.com> wrote in message
news:d8**********@wisteria.csv.warwick.ac.uk...
The input to a function of a 3rd party library I want to use requires a
double**, which is a multi-dimension array of doubles.

I have looked on the net etc and seen several ways of supposedly doing
this, but I don't seem to be able to get them to work. I was wondering
if anybody can tell me what I am doing wrong.

int rows = 10 ;
int cols = 10 ;

double** data ;

data = new (double*)[rows] ;

for (int i = 0 ; i < rows ; i++) {

data[i] = new double[cols];

}

main.cpp(291) : error C2143: syntax error : missing ';' before '['
main.cpp(291) : error C2337: 'rows' : attribute not found; it is neither
a built-in nor a custom attribute that is accessible in the current
namespace

both the error point to the data = new (double*)[rows] line
May I don't need to create the multi-dimension array this way, I don't
know. As mentioned above, I have a 3rd party library function that
requests double** data.

One point is that I won't know the row and column sizes until runtime.

Any suggestions would be much appreciated,

Adam

Jul 23 '05 #2
ben wrote:
Looks like a Visual C++ bug. The code compiled fine with gcc. Try this:

typedef double* ptr_to_double;

int rows = 10;
int cols =10;

double** data = new ptr_to_double[rows];

//...

delete[] data;
ben

"Adam Hartshorne" <or********@yahoo.com> wrote in message
news:d8**********@wisteria.csv.warwick.ac.uk...
The input to a function of a 3rd party library I want to use requires a
double**, which is a multi-dimension array of doubles.

I have looked on the net etc and seen several ways of supposedly doing
this, but I don't seem to be able to get them to work. I was wondering
if anybody can tell me what I am doing wrong.

int rows = 10 ;
int cols = 10 ;

double** data ;

data = new (double*)[rows] ;

for (int i = 0 ; i < rows ; i++) {

data[i] = new double[cols];

}

main.cpp(291) : error C2143: syntax error : missing ';' before '['
main.cpp(291) : error C2337: 'rows' : attribute not found; it is neither
a built-in nor a custom attribute that is accessible in the current
namespace

both the error point to the data = new (double*)[rows] line
May I don't need to create the multi-dimension array this way, I don't
know. As mentioned above, I have a 3rd party library function that
requests double** data.

One point is that I won't know the row and column sizes until runtime.

Any suggestions would be much appreciated,

Adam



Thanks that did the trick! Any idea why that is the case?

Adam
Jul 23 '05 #3
Adam Hartshorne wrote:
The input to a function of a 3rd party library I want to use requires
a double**, which is a multi-dimension array of doubles.

I have looked on the net etc and seen several ways of supposedly doing
this, but I don't seem to be able to get them to work. I was wondering
if anybody can tell me what I am doing wrong.

int rows = 10 ;
int cols = 10 ;

double** data ;

data = new (double*)[rows] ;

for (int i = 0 ; i < rows ; i++) {

data[i] = new double[cols];

}

main.cpp(291) : error C2143: syntax error : missing ';' before '['


Drop the parentheses.

V
Jul 23 '05 #4
Adam Hartshorne wrote:
The input to a function of a 3rd party library I want to use requires a
double**, which is a multi-dimension array of doubles.
Actually it is a pointer to pointer to double.
It can be confusing to call a pointer-to-pointer a
multi-dimension array. The term 'multi-dimension array' usually
suggests an array of arrays, eg:

double x[10][10];

Of course, this sort of array is not suitable for your function.
double** data ;
data = new (double*)[rows] ;
'new (double *)[rows]' means '(new (double *))[rows]'.

In other words, it allocates one pointer to double, and then
immediately dereferences a pointer to that (causing undefined
behaviour).

To allocate an array of pointers-to-double:

data = new double *[rows];
for (int i = 0 ; i < rows ; i++) {
data[i] = new double[cols];
}

main.cpp(291) : error C2143: syntax error : missing ';' before '['


Good that your compiler won't compile such trash (it's certainly
an error), but bad because it means the compiler is not standards-
compliant :)

Jul 23 '05 #5
ben
A parser bug perhaps. VC++ might be a bit lazy and it expects

new XXX[nnn];

without parenthesis around XXX.

ben
Thanks that did the trick! Any idea why that is the case?

Adam

Jul 23 '05 #6
ben
Yeah that's a better solution!

ben

Drop the parentheses.

V

Jul 23 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

37
by: ajikoe | last post by:
Hello, Is anyone has experiance in running python code to run multi thread parallel in multi processor. Is it possible ? Can python manage which cpu shoud do every thread? Sincerely Yours,...
4
by: Frank Jona | last post by:
Intellisense with C# and a multi-file assembly is not working. With VB.NET it is working. Is there a fix availible? We're using VisualStudio 2003 Regards Frank
12
by: * ProteanThread * | last post by:
but depends upon the clique: ...
6
by: cody | last post by:
What are multi file assemblies good for? What are the advantages of using multiple assemblies (A.DLL+B.DLL) vs. a single multi file assembly (A.DLL+A.NETMODULE)?
6
by: Joe | last post by:
I have 2 multi-list boxes, 1 displays course categories based on a table called CATEGORIES. This table has 2 fields CATEGORY_ID, CATEGORY_NAME The other multi-list box displays courses based on...
4
by: mimmo | last post by:
Hi! I should convert the accented letters of a string in the correspondent letters not accented. But when I compile with -Wall it give me: warning: multi-character character constant Do the...
5
by: Shane Story | last post by:
I can seem to get the dimensions of a frame in a multiframe tiff. After selecting activeframe, the Width/Height is still really much larger than the page's actual dimensions. When I split a...
5
by: dkelly925 | last post by:
Is there a way to add an If Statement to the following code so if data in a field equals "x" it will launch one report and if it equals "y" it would open another report. Anyone know how to modify...
0
by: Sabri.Pllana | last post by:
We apologize if you receive multiple copies of this call for papers. *********************************************************************** 2008 International Workshop on Multi-Core Computing...
1
by: mknoll217 | last post by:
I am recieving this error from my code: The multi-part identifier "PAR.UniqueID" could not be bound. The multi-part identifier "Salary.UniqueID" could not be bound. The multi-part identifier...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.