Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
2answers
536 views

Is this a covariance bug in C# 4?

In the following piece of code I expected to be able to implicitly cast from elements to baseElements because TBase is implicitly convertible to IBase. public interface IBase { } public interface ...
19
votes
5answers
2k views

C# : Is Variance (Covariance / Contravariance) another word for Polymorphism?

I am trying to figure out the exact meaning of the words Covariance and Contravariance from several articles online and questions on StackOverflow, and from what I can understand, it's only another ...
17
votes
4answers
277 views

Does I<D> re-implement I<B> if I<D> is convertible to I<B> by variance conversion?

interface ICloneable<out T> { T Clone(); } class Base : ICloneable<Base> { public Base Clone() { return new Base(); } } class Derived : Base, ICloneable<Derived> { new ...
15
votes
3answers
639 views

When is @uncheckedVariance needed in Scala, and why is it used in GenericTraversableTemplate?

@uncheckedVariance can be used to bridge the gap between Scala's declaration site variance annotations and Java's invariant generics. scala> import java.util.Comparator import ...
11
votes
2answers
363 views

When using covariance notations or generic bounds in Scala

In Scala variance can be defined with variance operators like + and - on the generic type argument. For example the List type is covariant in the standard library. class List[+A] So a function with ...
10
votes
3answers
425 views

How does Java's use-site variance compare to C#'s declaration site variance?

My understand is that specifying variance for generics in C# happens at the type declaration level: when you're creating your generic type, you specify the variance for the type arguments. In Java, on ...
8
votes
2answers
399 views

What's the difference between A<:B and +B in Scala?

The title says it all: What's the difference between [A <: B] and [+B] in Scala?
8
votes
6answers
445 views

Why is there no parameter contra-variance for overriding?

C++ and Java support return-type covariance when overriding methods. Neither, however, support contra-variance in parameter types - instead, it translates to overloading (Java) or hiding (C++). Why ...
8
votes
5answers
497 views

Conditional typing in generic method

Consider the following (heavily simplified) code: public T Function<T>() { if (typeof(T) == typeof(string)) { return (T) (object) "hello"; } ... } It's kind of absurd to ...
7
votes
7answers
556 views

Rolling variance algorithm

I'm trying to find an efficient, numerically stable algorithm to calculate a rolling variance (for instance, a variance over a 20-period rolling window). I'm aware of the Welford algorithm that ...
6
votes
2answers
105 views

Is it possible to change the variance of a base class/trait in Scala?

I would like to derive from Scala's immutable Map. It is defined as such: trait Map[A, +B] Unfortunately, my implementation needs to be invariant in B. I tried the following, but without success: ...
6
votes
1answer
154 views

How can I combine the typeclass pattern with subtyping?

Suppose I'm using the typeclass pattern in Scala. Here's how I make a class C part of the typeclass Foo: Welcome to Scala version 2.9.0.1 (Java HotSpot(TM) 64-Bit Server VM, Java 1.6.0_26). ...
6
votes
2answers
296 views

Can I “pimp my library” with an analogue of TraversableLike.map that has nicely variant types?

Suppose I want to add functionality like map to a Scala List, something along the lines of list mapmap f, which applies the function f to each element of list twice. (A more serious example might be ...
6
votes
3answers
1k views

Homoscedascity test for Two-Way ANOVA

I've been using var.test and bartlett.test to check basic ANOVA assumptions, among others, homoscedascity (homogeniety, equality of variances). Procedure is quite simple for One-Way ANOVA: ...
5
votes
1answer
72 views

Can't add member to Map using dynamic mixin type for the key

The following statement compiles fine and works as expected: val map : Map[_ >: Int with String, Int] = Map(1 -> 2, "Hello" -> 3) However, if I try to add to the map: map + ((3,4)) or ...
5
votes
2answers
96 views

Var(x) and cov(x, x) don't give the same result in numpy

A property of the covariance is, that cov(x, x) = var(x) However, in numpy I don't get the same result. from numpy import var, cov x = range(10) y = var(x) z = cov(x, x)[0][1] print y, z Am I ...
5
votes
2answers
139 views

Contravariance in Action lambda - C#

I have a class hierarchy like this public abstract class CalendarEventBase{} public class TrainingEvent : CalendarEventBase{} public class AuditEvent : CalendarEventBase{} I wanted to create an ...
4
votes
1answer
64 views

Is it possible to unify the concepts of inheritance and parametric polymorphism?

I wonder if it is generally possible to unify the concepts of inheritance and parametric polymorphism ("generics"), especially regarding variance but also in terms how ("syntax") and where ...
4
votes
1answer
75 views

Detect variance on generic type parameters of interfaces

Is there a way to reflect on an interface to detect variance on its generic type parameters and return types? In other words, can I use reflection to differentiate between the two interfaces: ...
3
votes
2answers
181 views

Parameterized method with Ordering?

Now I am confused. I am quite new on Scala, having worked with it for a few weeks, I think I am getting familiar with it, but I am stuck on the apparently trivial following case. I cannot find the ...
3
votes
5answers
405 views

Covariance and Contravariance on the same type argument

The C# spec states that an argument type cannot be both covariant and contravariant at the same time. This is apparent when creating a covariant or contravariant interface you decorate your type ...
2
votes
1answer
80 views

How to perform Hartley's test in R

I can find zero information on this. So if you have a web link or just know how to do it in R please let me know. Here is the one-way anova example from some stats text book: summary(av1) ...
2
votes
1answer
69 views

Portfolio Variance of a Portfolio of N Assets in Python

Portfolio variance is calculated as: port_var = W'_p * S * W_p for a portfolio with N assest where W'_p = transpose of vector of weights of stocks in portfolios S = sample covariance matrix W_p = ...
2
votes
1answer
72 views

Unable to cast from DerivedT<Derived2T> to BaseT<base2T>

I have those classes, an implementation of active record pattern: public abstract class RecordCollection<T> : ObservableCollection<T> where T : Record public abstract class Record : ...
2
votes
1answer
89 views

Variance of Ordered, PartiallyOrdered

According to the documentation, PartiallyOrdered[A] is covariant in A, while Ordered[A] is invariant (but used to be covariant) in A. Why was Ordered[A] ever covariant in A? Isn't this an obvious ...
2
votes
1answer
117 views

Confused with Variance

Given the following: trait Fruit class Apple extends Fruit class Orange extends Fruit case class Crate[T](value:T) def p(c:Crate[Fruit]) { } val cra = Crate(new Apple) val cro = Crate(new ...
2
votes
2answers
87 views

problem with calculating variance in prolog

i have made a function in prolog:- mean(L, M) :- sum(L, S), length(L, N), M is S/N. sum([],0). sum([H|T],Y):- sum(T,X), Y is X + H. variance([],0). variance([H|T], M, VO):- ...
2
votes
3answers
119 views

Compensating for “variance” in a survey

The title for this one was quite tricky. I'm trying to solve a scenario, Imagine a survey was sent out to XXXXX amount of people, asking them what their favourite football club was. From the ...
2
votes
2answers
307 views

Minimize variance “intuitively”

We have a problem the arises in asset management. I think (and hope) it raises interesting enough questions for this forum to consider it. We made pretty extensive searches of the literature and find ...
2
votes
2answers
157 views

Abstract classes/traits and invariant functions

Given a trait T trait T { def v: Int def +(t: T): T } the following class A case class A(v: Int) extends T { def +(a: A) = A(v + a.v) } is not a valid subtype of T. The implementation of ...
2
votes
4answers
439 views

Scala Function Variance and Overriding

I'm having a little problem understanding variance of methods when overloading. While this perfectly works due to covariance in the return type class Bla class Fasel extends Bla trait Test[A] { ...
2
votes
3answers
181 views

Generic parameter delegate?

I'm a bit fuzzy on the new Action/Func/Variance/CoVariance stuff, which is probably what I need. What I want is to be able to pass a delegate as a parameter to a method, that takes a string and ...
2
votes
1answer
260 views

Finding the spread of each cluster from Kmeans

I'm trying to detect how well an input vector fits a given cluster centre. I can find the best match quite easily (the centre with the minimum euclidean distance to the input vector is the best), ...
2
votes
6answers
1k views

Calculating variance with large numbers

I haven't really used variance calculation that much, and I don't know quite what to expect. Actually I'm not too good with math at all. I have a an array of 1000000 random numeric values in the ...
1
vote
2answers
87 views

Specifying the subtype of a Generic in Scala

Consider the following example, which should print 8. Why does the A.Value + B.Value thinks that B.Value should be a string? How do I fix it? object Catano extends App { val const3 = new ...
1
vote
1answer
81 views

A general way to convert IFoo<T> to IFoo<object>

I have an interface: interface IFoo<out T> { T Get(); } and some instances like IFoo<int> a, IFoo<User> u, IFoo<string> s and etc. There is a ...
1
vote
2answers
75 views

Derived type functionality in delegate

I want to write a method with signature Expression<Func<T, bool>> Foo<T>(). My class U inherits from T. I want to include U-specific processing in this delegate. The problem is, T ...
1
vote
1answer
375 views

Problem finding standard deviation and population variance correctly using Fortran

I couldn't find much when I searched for standard deviations and population variances on fortran 95. So I'm wondering if someone could help me? Thanks for your time. Here is what I did, it compiled ...
1
vote
3answers
214 views

Question about type variance in Scala

As I understand, the type variance are used in the following cases: If a generic G has type parameter T1, which appears as a type of an argument of a G method, then G can be contravariant in T1. If ...
1
vote
2answers
109 views

How can I get around ref parameters not allowing type variation?

Lets say I have the following class structure in my data access layer: interface IBehavior<in T> { void Load(T model); } class ModelManager<T> { ...
1
vote
1answer
90 views

Type signature variance in C#, with respect to overrides

slightly different question about variance this time. I take it from experimentation that C# does not allow you to override a virtual function with a contravariant function? If it does, how do you ...
1
vote
2answers
226 views

My variance function in C# does not return accurate value

The source data : static double[] felix = new double[] { 0.003027523, 0.002012256, -0.001369238, -0.001737660, -0.001647287, 0.000275154, 0.002017238, 0.001372621, 0.000274148, ...
1
vote
3answers
244 views

ref and out parameters in C# and cannot be marked as variant

What does the statement mean? From here ref and out parameters in C# and cannot be marked as variant. 1) Does it mean that the following can not be done. public class SomeClass<R, A>: ...
1
vote
3answers
384 views

Help using variance in C# 4.0

Here's the problem. I would like to create a class which will contain configuration data. This data consists of key/value pairs. Some examples: "hostName"="localhost", "timeout"=1000, etc.. My initial ...
0
votes
2answers
57 views

Random number with specific variance in Python

In a Python program, I need to generate normally-distributed random numbers with a specific, user-controlled variance. How can I do this?
0
votes
2answers
81 views

how to prepare data in R for manova

The data in a text looks like this: Initial Speed Pedal Rotation 10 mph 25 mph 40 mph 55 mph 5 degrees 0.35 0.19 0.14 0.10 8 degrees ...
0
votes
0answers
64 views

Huge variance when benchmarking Java code unless sleep() is used

I am benchmarking Java functions over a local network via Object serialization (ObjectInputStream, ObjectOutputStream). On a system with zero load this currently gives me a huge variance with results ...
0
votes
0answers
39 views

What are the covariant and contravariant types of .Net 4?

I would like to know if .Net 4 has definitions of covariant/contravariant types, so that I can use them instead of recreating them myself. A list of these types would be a valuable resource of ...
0
votes
2answers
112 views

Variance trick with path-dependent types

Here's another one for implicits and path dependent types. I don't understand why I need to be so verbose here: (Note -- I found the answer, see below) trait B trait C[ X ] trait A { def call[ B1 ...
0
votes
1answer
117 views

Type parameters, constraints and covariance/contravariance

Let's say I have the following classes that have different implementations based on the object to be stored in: public class ListOfPersistent<T> : IList<T> where T : Persistent {... ...

1 2