access structure array
I have a structure like this
for i=1:10
temp(i).a = 2*i;
temp(i).b = 3*i;
end;
I want to get an array of elements a from temp(:).a without using a
loop. Any suggestion ?
I tried to use
S = substruct('()',{1, ':'}, '.', 'a');
aa = subsref(N,S)
but it shows only the first element, not the whole array of 10
elements.
thanks a lot for your help,
Nilanjan
.
Relevant Pages
- RE: Error 3021
... Create proto-file names using the selected job names and storre to an array ... Save and close the document and repeat the loop ... Dim strJobsAs String, strDocsAs String, varValsAs _ ... (microsoft.public.access.modulesdaovba) - RE: Error 3021
... Kevin Backmann ... Create proto-file names using the selected job names and storre to an array ... Save and close the document and repeat the loop ... Dim strJobsAs String, strDocsAs String, varValsAs _ ... (microsoft.public.access.modulesdaovba) - RE: Error 3021
... Create proto-file names using the selected job names and storre to an array ... Save and close the document and repeat the loop ... Dim strJobsAs String, strDocsAs String, varValsAs _ ... (microsoft.public.access.modulesdaovba) - Re: Displaying a large amount of data quickly (VB6)
... >>> involving a loop of VB code would be too slow. ... but I'd sure be interested to know if that StringBuilder ... Array elements: 25000 ... Array construction: 17 ... (microsoft.public.vb.controls) - RE: Error 3021
... Create proto-file names using the selected job names and storre to an array ... Save and close the document and repeat the loop ... Dim strJobsAs String, strDocsAs String, varValsAs _ ... (microsoft.public.access.modulesdaovba) |
|