Gamestudio Links
Zorro Links
Newest Posts
Blobsculptor tools and objects download here
by NeoDumont. 03/28/24 03:01
Issue with Multi-Core WFO Training
by aliswee. 03/24/24 20:20
Why Zorro supports up to 72 cores?
by Edgar_Herrera. 03/23/24 21:41
Zorro Trader GPT
by TipmyPip. 03/06/24 09:27
VSCode instead of SED
by 3run. 03/01/24 19:06
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
2 registered members (Quad, aliswee), 835 guests, and 5 spiders.
Key: Admin, Global Mod, Mod
Newest Members
sakolin, rajesh7827, juergen_wue, NITRO_FOREVER, jack0roses
19043 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Inexplicable behavior of file_write() #477890
08/12/19 11:59
08/12/19 11:59
Joined: Mar 2014
Posts: 13
B
Bernardo Offline OP
Newbie
Bernardo  Offline OP
Newbie
B

Joined: Mar 2014
Posts: 13
Hello, I'm desperate for banal storage.
Here is my code:

float N[12][60][12];
int filelength=60*12*12*4;
file_write("N.dat", N, filelength);

Seems to be right. But the file has only a size of 34 KB.

Does anyone have any idea what I'm doing wrong? Saving other files works!
Many thanks for your help

Forget it! Oh, dear, I got it!

Last edited by Bernardo; 08/12/19 15:01.
Re: Inexplicable behavior of file_write() [Re: Bernardo] #477895
08/12/19 18:42
08/12/19 18:42
Joined: Jan 2019
Posts: 73
berlin
L
laz Offline
Junior Member
laz  Offline
Junior Member
L

Joined: Jan 2019
Posts: 73
berlin
please post the solution for other people with the same or similar problems wink

Re: Inexplicable behavior of file_write() [Re: Bernardo] #477898
08/12/19 19:08
08/12/19 19:08
Joined: Feb 2017
Posts: 1,718
Chicago
AndrewAMD Online
Serious User
AndrewAMD  Online
Serious User

Joined: Feb 2017
Posts: 1,718
Chicago
For those wondering what the solution is, there was no problem. 60*12*12*4 = 34560, hence the 34 KB file.

But for aesthetic purposes, I would suggest writing it this way: sizeof(float)*12*60*12. This reads from left to right on the array declaration.


Moderated by  Petra 

Powered by UBB.threads™ PHP Forum Software 7.7.1