Displaying 4 results from an estimated 4 matches for "coord1".
Did you mean:
coords
2016 Oct 24
2
RFC: (Co-)Convergent functions and uniform function parameters
...9;d appreciate input on this proposal, e.g. if this can be solved in an
easier way or if there are obvious problems with this approach.
Thanks,
Nicolai
..........
In a nutshell, the problem that this intends to solve is that:
%v1 = texelFetch(%sampler, %coord0)
%v2 = texelFetch(%sampler, %coord1)
%v = select i1 %cond, vType %v1, %v2
is logically equivalent to and could benefit from being transformed to,
%coord = select i1 %cond, cType %coord0, %coord1
%v = texelFetch(%sampler, %coord)
but on the other hand
%v1 = texelFetch(%sampler0, %coord)
%v2 = texelFetch(%sampler1, %...
2016 Oct 24
2
RFC: (Co-)Convergent functions and uniform function parameters
...asier way or if there are obvious problems with this approach.
>>
>> Thanks,
>> Nicolai
>>
>> ..........
>> In a nutshell, the problem that this intends to solve is that:
>>
>> %v1 = texelFetch(%sampler, %coord0)
>> %v2 = texelFetch(%sampler, %coord1)
>> %v = select i1 %cond, vType %v1, %v2
>>
>> is logically equivalent to and could benefit from being transformed to,
>>
>> %coord = select i1 %cond, cType %coord0, %coord1
>> %v = texelFetch(%sampler, %coord)
>>
>> but on the other hand
>>...
2008 Sep 25
1
Confusion over syntax in a package
...some research I am conducting.
The package works fine when I call the functions from the command line
as the examples instruct.
However, I am attempting to step through some of the functions so that
I can obtain a better idea of what is going on. I have come to the
following command:
calc.dist(coord1.day.index,coord2.day.index,id.day.index)
I know what this is supposed to do, it is calculating the geographic
distance between a series of latitude and longitude points. However,
I am informed by R that no such function exists. I searched through
the whole package for a function declaration, roo...
2016 Oct 24
2
RFC: (Co-)Convergent functions and uniform function parameters
...t;>
>>>> Thanks,
>>>> Nicolai
>>>>
>>>> ..........
>>>> In a nutshell, the problem that this intends to solve is that:
>>>>
>>>> %v1 = texelFetch(%sampler, %coord0)
>>>> %v2 = texelFetch(%sampler, %coord1)
>>>> %v = select i1 %cond, vType %v1, %v2
>>>>
>>>> is logically equivalent to and could benefit from being transformed to,
>>>>
>>>> %coord = select i1 %cond, cType %coord0, %coord1
>>>> %v = texelFetch(%sampler, %coord)
&g...