Ivec
  Home FAQ Contact Sign in
 
Advanced search
MATCHING GROUPS



more...
POPULAR GROUPS

more...

found 36 articles for 0.000 sec
Re: Grande (beh...)lezione(mah...)di stile(mmm...) Sarrasani (quello del circo)     

Group: it.arti.musica.classica · Group Profile · Search for Ivec in it.arti.musica.classica
Author: Sarrasani
Date: Jul 13, 2008 05:43

> Caspita Sarrasani... sei un sosia di quel figo di Kevin Spacey! AAAAAh! Mai sentita. Qualcuno ha fatto ivece il nome di Harvey Keitel. Dovrei curare di più il look, altrochè, in fondo questi video mi servono come vetrina per presentarmi in risposta ad annunci hard (ma rispettando i limiti di youtube), per cui..... A parte questo, ci piacerebbe tanto sapere - se vuoi ...
Show full article (1.20Kb) · Show article thread
[sk] Impreza - 4 urodziny VLAKY.NET - s Magdou na Gemer     

Group: pl.misc.kolej · Group Profile · Search for Ivec in pl.misc.kolej
Author: Krzysztof Waszkiewicz
Date: Mar 14, 2008 15:41

...impreza z okazji 4 urodzin serwisu Vlaky.net Oplata 350 Sk / osobe obejmuje: - przejazd muzelanym skladem na trasie Košice - Plešivec - Slavošovce - Plešivec (linia zamknieta, wiec jest to jedyna mozliwosc jej zaliczenia) - broszurke o historii doliny Štítnika, Slavošoviec i linii kolejowej - obiad na stacji Slavoš...
Show full article (1.01Kb)
Re: openssl enc     

Group: pl.comp.os.linux.programowanie · Group Profile · Search for Ivec in pl.comp.os.linux.programowanie
Author: Zorro
Date: Dec 18, 2007 10:33

..., &klucz, jak); skąd funkcja wie ile ma szyfrowac danych. w ustawieniach klucza nie podajesz. czy dla kazdego algorytmu jest inaczej? np. dla DES BF_cbc_encrypt(wej, wyj, strlen(wej), &klucz, ivec, jak); a tu masz inna wogole ilosc parametrow. nic nie rozumiem. w dokumentacji jest ona stała. ECB i CBC nie maja przeciez zadnej dodatkowej danej to tylko sposob szyfrowani zalezy od ...
Show full article (2.33Kb) · Show article thread
Re: avoiding out of bounds errors     

Group: comp.lang.fortran · Group Profile · Search for Ivec in comp.lang.fortran
Author: Arjen Markus
Date: Aug 17, 2007 00:27

... zero-sized arrays. subroutine group_ranges(ivec,i1,i2) ! return in i1(:) and... have equal values integer, intent(in) :: ivec(:) integer, intent(out), allocatable :: i1(:),i2(:) integer :: i,ngroups call change_pos(ivec,i1) ngroups = size(i1) allocate (...> end do i2(ngroups) = size(ivec) end subroutine group_ranges It is of...
Show full article (1.87Kb) · Show article thread
avoiding out of bounds errors     

Group: comp.lang.fortran · Group Profile · Search for Ivec in comp.lang.fortran
Author: Beliavsky
Date: Aug 16, 2007 12:48

...procedures with zero-sized arrays. subroutine group_ranges(ivec,i1,i2) ! return in i1(:) and ...that have equal values integer, intent(in) :: ivec(:) integer, intent(out), allocatable :: i1(:),i2(:) integer :: i,ngroups call change_pos(ivec,i1) ngroups = size(i1) allocate (i2(...(i+1) - 1 end do i2(ngroups) = size(ivec) end subroutine group_ranges
Show full article (1.08Kb)
Re: limitations on function reference     

Group: comp.lang.fortran · Group Profile · Search for Ivec in comp.lang.fortran
Author: Dick Hendrickson
Date: Apr 24, 2007 11:53

... could define a function function slice(ivec,i1,i2) result(jvec) ! return the ... ! array access integer, intent(in) :: ivec(:) integer, intent(in) :: i1,i2 ... of an assumed shape array, like IVEC(:), is always 1. So, if f(...side. Dick Hendrickson j2 = min(ubound(ivec,dim=1),i2) nj = j2 - ... be sure. allocate (jvec(nj)) jvec = ivec(j1:j2) end function slice ...
Show full article (2.46Kb)
Re: limitations on function reference     

Group: comp.lang.fortran · Group Profile · Search for Ivec in comp.lang.fortran
Author: Beliavsky
Date: Apr 24, 2007 11:32

...expression one could define a function function slice(ivec,i1,i2) result(jvec) ! return the slice ivec...of-bounds ! array access integer, intent(in) :: ivec(:) integer, intent(in) :: i1,i2 integer, allocatable ...integer :: j1,j2,nj j1 = max(lbound(ivec,dim=1),i1) j2 = min(ubound(ivec,dim...- j1 + 1 allocate (jvec(nj)) jvec = ivec(j1:j2) end function slice and write slice...
Show full article (1.89Kb) · Show article thread
Re: array operations on non-conforming arrays -- do compilers catch them?     

Group: comp.lang.fortran · Group Profile · Search for Ivec in comp.lang.fortran
Author: John Harper
Date: Apr 1, 2007 15:32

... when array subscripts are variables. For the following invalid code, program xsum_nonconform integer, parameter :: n = 3 integer :: i,ivec(n) ivec = 1 do i=n,n print*,ivec(1:n-1) + ivec(1:i) end do end program xsum_nonconform G95, Intel Visual Fortran, and Salford don't detect a problem at compile or run time, ...
Show full article (0.92Kb) · Show article thread
Re: array operations on non-conforming arrays -- do compilers catch them?     

Group: comp.lang.fortran · Group Profile · Search for Ivec in comp.lang.fortran
Author: Beliavsky
Date: Mar 31, 2007 06:05

... :: n = 3 integer :: i,ivec(n) ivec = 1 do i=n,n...ivec(1:n-1) + ivec(1:i) end do end program xsum_nonconform ... :: n = 3 integer :: i,ivec(n) ivec = 1 i = n print*,ivec(1:n-1) + ivec(1:i) end program xsum_nonconform_simple the compilers behave...ivec(1:n-1) + ivec(1:n) end program xxnonconform gives a compile... saying xxnonconform.f90:5.7-25: print*,ivec(1:n-1) ...
Show full article (1.34Kb)
Re: array operations on non-conforming arrays -- do compilers catch them?     

Group: comp.lang.fortran · Group Profile · Search for Ivec in comp.lang.fortran
Author: Lane Straatman
Date: Mar 30, 2007 17:23

... program xsum_nonconform integer, parameter :: n = 3 integer :: i,ivec(n) ivec = 1 do i=n,n print*,ivec(1:n-1) + ivec(1:i) end do end program xsum_nonconform Is it your intent to have the do loop... runtime error: Array bound mismatch, size mismatch for dimension 1 of array 'ivec' (in file 'xsum_nonconform.f90', at line 6) and Lahey/Fujitsu with...
Show full article (0.99Kb) · Show article thread
1 · 2 · 3 · 4 · next