473,569 Members | 2,844 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 2225
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********@yah oo.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********@yah oo.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(29 1) : error C2143: syntax error : missing ';' before '['
main.cpp(29 1) : 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
4847
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, Pujo
4
4642
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
3851
by: * ProteanThread * | last post by:
but depends upon the clique: http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&oe=UTF-8&threadm=954drf%24oca%241%40agate.berkeley.edu&rnum=2&prev=/groups%3Fq%3D%2522cross%2Bposting%2Bversus%2Bmulti%2Bposting%2522%26ie%3DUTF-8%26oe%3DUTF-8%26hl%3Den ...
6
8150
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
4873
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 a table called COURSES. This table has 2 fields CATEGORY_ID, COURSE_NAME. The CATEGORY_ID is a FK in COURSES and a PK in CATEGORIES. I want...
4
17840
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 problem is the charset? How I can avoid this warning? But the worst thing isn't the warning, but that the program doesn't work! The program execute...
5
5973
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 TIFF to several PNG files this causes a problem, becuase the resulting image is (the page to the far left and a lot of black space surrounding it and...
5
3249
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 this? Private Sub cmdPreview_Click() On Error GoTo Err_Handler 'Purpose: Open the report filtered to the items selected in the list box....
0
2305
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 Systems (MuCoCoS'08) Barcelona, Spain, March 4 - 7, 2008; in conjunction with CISIS'08. <http://www.par.univie.ac.at/~pllana/mucocos08>...
1
9292
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 "PAR.UniqueID" could not be bound. The multi-part identifier "PAR.PAR_Status" could not be bound. The multi-part identifier "Salary.New_Salary" could not...
0
7695
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7612
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7964
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
1
5509
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
5218
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3653
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3637
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1209
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
936
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

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.