Zitat von
rowkajjh:
Was ist denn der Unterschied zwischen 'pDouble' und 'array of double'?
pDouble ist ein Zeigen auf einen Double-Wert. array of double ist ein Array von Double-Werten.
Zitat:
Was ich letztendlich will (ich schreibs mal auf c-isch);
float **map=malloc(maps*sizeof(float*)); // Wieviel maps
map[i]=malloc(w*h*sizeof(float)); // Groesse jeder map
float *src=map[i];
src[x]=1.0f;
Danke und Tschau!
var
map: array of double;
begin
setLength( map, maps); { maps = Anzahl maps }
...
map[x] := 1;
...
end;