Covariance, contravariance and invariance describe how the existing type inheritance hierarchy changes when subjected to some transformation (such as usage within generics). If the transformation keeps the ordering of the original hierarchy, it is "covariant". If it reverses it, it is ...

learn more… | top users | synonyms

3
votes
0answers
84 views

Covariance broken in C# arrays?

Consider following generic interface ITest with a covariant type parameter T, the generic class Test implementing the interface, and a class A and with a subclass B: interface ITest<out T> {   ...
1
vote
1answer
62 views

Getting around container covariance in C++/STL

First lets start with the problem. I have a tree, and I want to do the following: class Base { std::vector<Base*> children_; }; class DerivedA : public Base { //adds some members }; ...
2
votes
2answers
72 views

Calculating Covariance in Pandas Time Series

Apologies in advance if this is documented somewhere and I just failed to find it: Let's say that I have a time series data frame that looks like this: WEEK_END_DATE TITLE_SHORT ...
0
votes
1answer
41 views

Pandas Shaping Data for Covariance

I need to conduct a simple covariance analysis in a time series. My raw data comes in the shape like this: WEEK_END_DATE TITLE_SHORT SALES 2012-02-25 00:00:00.000000 "Bob" ...
15
votes
4answers
252 views

Why is Action<Action<T>> covariant?

This is something I'm having a hard time wrapping my head around. I understand that Action<T> is contravariant and is probably declared as such. internal delegate void Action<in T>(T t); ...
1
vote
1answer
43 views

Why casting from SomeClass<T> where T : BaseClass to SomeClass<DerivedClass : BaseClass> is not possible?

I am trying to create a generic method that returns an instance of IRowMapper<T>. Here are my classes: public abstract class Person { public int Id { get; set; } protected void ...
4
votes
1answer
77 views

Why is it safe not to check object-private or object-protected definitions for their variance position?

I have learned that Scala does not check object-private(private[this]) or object-protected(protected[this]) definitions for their variance position. Why is it safe not to check them? I have read some ...
5
votes
2answers
109 views

Generic conversion

Basically I'm doing is converting from Exception to GenericFaultException class (The below code snippet uses C# as a language. See the below details ...
0
votes
0answers
35 views

Mahalanobis distance covariance

I want to divide a set of vectors into clusters using mahalanobis distance. But I'm not sure from which vectors to take the covariance, since it is very likely they are from multiple clusters. Should ...
2
votes
0answers
42 views

Why contravariance/covariance requires using generic in C#? [duplicate]

To use covariance/contravariance, I need to use generic with either interface or delegate. I assume that it has to do something with the language design problem. For example, this shows me no ...
-3
votes
1answer
42 views

Can someone explain why this operation is invalid? [closed]

I was reading up on covariance and contravariance today and I came across a post on stack exchange where Jon Skeet was explaining invariance at the class level. He used an example of fruit and why ...
2
votes
2answers
68 views

Covariance in C# generic class

C# 4.0 .NET 4.5 Silverlight 5 It seems weird that I cant find the solution so need some help please. I have base class Base and derived class Child : Base. I have also helper class which has generic ...
0
votes
1answer
61 views

C# Open Instance Delegate covariance and abstract data

stackoverflow. I'm new to C#, but have experience in C++ and I got stuck with one idea realization: I want to make an object with abstract properties(not C# properties, but variables) as a base class ...
8
votes
3answers
275 views

Variance rules in C#

The Exact rules for variance validity are a bit vague and not specific. I'm going to list the rules for what makes a type valid-covariantly, and attach some queries and personal annotations to each of ...
3
votes
1answer
59 views

Multivariate Random Number Generation in Matlab

I'm probably being a little dense but I'm not very mathsy and can't seem to understand the covariance element of creating multivariate data. I'm after two columns of random data (representing two ...
0
votes
0answers
46 views

why can't I assign a list of an object to an IList of the interface it implements [duplicate]

public interface IRandom {} public class Random: IRandom {} I can assign: IRandom random = new Random(); but when I try this: IList<IRandom> randomList = new List<Random>(); I ...
1
vote
0answers
23 views

EL and covariant return types

i have these classes public abstract class Unit { public abstract UnitType getType(); ... } public class Item extends Unit { protected ItemType type; @Override public ItemType ...
2
votes
2answers
74 views

A simple builder pattern in Scala

I'm implementing a very simple builder pattern for a map-like container: trait KeyValueContainer[K,V] { private var props: Map[K, V] = new HashMap[K, V] private var built = false /** * Adds ...
3
votes
2answers
84 views

Scala invariant generic type parameter ignored by method parameter type depending whether argument is literal expression versus variable

Summary If I pass a literal expression as the argument to a function, shouldn't that be the same as first evaluating that same literal expression, then binding a variable to the value returned from ...
1
vote
1answer
73 views

Scala: Why lower bounds in existential type declaration not enforced?

Assume the following declarations made into the Scala repl: class Animal class Bird extends Animal class Chicken extends Bird type SubType = t forSome { type t <: Bird } type SuperType = t forSome ...
2
votes
2answers
72 views

Issue with casting List<ClassA> where ClassA:Generic<Int32> to List<Generic<Int32>>

I have the next classes: public class EntityBase<T> { public T Id { get; set; } } And it's implementers: public class ClassA : EntityBase<Int32> { ... } public class ClassB ...
1
vote
3answers
73 views

Generic lists and co/contravariance

Let's say I have a generic List<ICalculation> which serves as a repository for all predefined calculations in my application... I have a generic interface called ICalculation<T, U> which ...
2
votes
1answer
48 views

Pattern matching / extractor fails (due to Option being covariant)

I have a problem with custom extractors which appears when using f-bounded type parameters. The following works: trait Bar object Model { object Foo { def unapply[A <: Bar](foo: Foo[A]): ...
7
votes
2answers
268 views

How to use C# generics without wildcards? [duplicate]

Over in java I'm pretty used to working with generics and the wildcard. Things like: List<? extends Animal>. This allows you to have a collection of subtypes of Animals and run generic ...
2
votes
1answer
46 views

How to make this trait covariant

I want to make the following trait covariant, knowing that DistTraversableLike is covariant in both its type parameters: trait TraversableNumOps[T, Repr] extends DistTraversableLike[T, Repr] { ...
0
votes
3answers
77 views

R cov(x) where x is data.frame with one row

I need to calculate covariance on a data.frame but i get matrix of NaN if the data.frame has only one row. What should I do for covariance on data.frame with one row? Well the main problem is: i have ...
7
votes
6answers
134 views

Generic constraint for Action doesn't work as expected

I am having some trouble understanding why the following snippet does not give me an error public void SomeMethod<T>(T arg) where T : MyInterface { MyInterface e = arg; } But this one, ...
3
votes
2answers
159 views

C# Generics Interface Covariance

I'm not sure what's going on here but I'm getting a compiler error using the following code: namespace SO { interface IUser<PostType> { PostType Post { get; set; } } ...
4
votes
2answers
197 views

How to make generic class that contains a Set of only its own type or subtypes as Children?

abstract class Animal { } class Mammal : Animal { } class Dog : Mammal { } class Reptile : Animal { } class AnimalWrapper<T> where T : Animal { public ISet<AnimalWrapper<T>> ...
0
votes
1answer
81 views

Why doesn't .Net 4 allow me to pass in an array of an interface? [duplicate]

I have an array of Circle objects (where Circle implements IShape interface and i have a function that has a parameter of List<IShape> . . why can't i pass in my array of Circles into this ? ...
3
votes
2answers
77 views

C# .Net Covariance - once more for old times sake?

So we have this: public interface IWidget { int Id { get; set; } } public class Widget : IWidget { public int Id { get; set; } } public class WidgetProcessor { public static void ...
0
votes
2answers
131 views

Calculating Covariance matrix using VBA

I need a help/guidance on Covariance calculation. I've written the below Procedure to calculate the covariance for 10 years of stock data. The problem is I am getting an error stating subscript out of ...
2
votes
1answer
101 views

Ensuring Matrix is symmetric (and positive-semidefinite)

I am currently implementing an online estimation algorithm for a set of covariance matrices and due to numerical errors, my covariance matrices happen to be not symmetric at all times. I currently ...
1
vote
3answers
91 views

in c#, how to determine the object's type when List<Object> is given?

my method look something like: Boolean actions(List<Object> input) { if (input.element is String) {...} else if (input.element is PSObject) {...} } I tried ...
0
votes
1answer
227 views

Excel Referencing to a range using concatenate

I am trying to reference two arrays using the following formula: =COVAR(CONCATENATE("Returns!"&D27&":"&D28),CONCATENATE("Returns!"&D27&":"&D28)) Where, for example, cell D27 ...
1
vote
1answer
104 views

Excel Covariance Matrix with #N/A data

I am trying to compute a covariance matrix on time series data of stocks (with a sample of it shown here). I am trying to put together a code that allows me to compute the covariances for flexible ...
0
votes
2answers
59 views

Assignments using templates in c#

public class Animal { } public class Cat : Animal { } public class AnimalBag<T> where T : Animal { } ... AnimalBag<Animal> bag = new AnimalBag<Cat>(); I get this error: ...
4
votes
1answer
217 views

Calculating Covariance with Python and Numpy

I am trying to figure out how to calculate covariance with the Python Numpy function cov. When I pass it two one-dimentional arrays, I get back a 2x2 matrix of results. I don't know what to do with ...
11
votes
1answer
131 views

Understanding scala's _ vs Any/Nothing

If a class has a convariant type parameter such as Iterable[+A], is there any difference between declaring def foo(bar: Iterable[_]) and def foo(bar: Iterable[Any]) ? If a class has a ...
5
votes
3answers
71 views

Adding a `to[Col[_]]` method for a covariant collection

I am implementing a data structure. While it doesn't directly mix in any of Scala's standard collection traits, I want to include the to[Col[_]] method which, given a builder factory, can generate ...
2
votes
1answer
81 views

Java - do covariance and contravariance exist? [duplicate]

I got a little bit confused the other day when it comes to generics and covariance/contravariance. I know C# specifies covariant/contravariant type parameters, but is there really a similar concept in ...
1
vote
1answer
94 views

How to define flatMap for a class with covariant/contravariant type parameters?

Let's say we have a class that has a covariant and a contravariant type parameter: sealed trait Pipe[-I,+O,+R] // case subclasses And we have monadic operations defined for instances of this class: ...
1
vote
1answer
89 views

numpy.random.multivariate_normal(mean, cov[, size])

numpy.random.multivariate_normal(mean, cov[, size]) I have a data set of N points and X dimensions. So when I compute numpy.mean(data, axis=0) and numpy.cov(data) and use the mean and cov values in ...
0
votes
4answers
374 views

numpy covariance matrix

Suppose I have two vectors of length 25, and I want to compute their covariance matrix. I try doing this with numpy.cov, but always end up with a 2x2 matrix. >>> import numpy as np ...
-4
votes
1answer
65 views

Covariance and Hiding in C++ [closed]

Can someone please explain the reason behind input in each line ? Class A { bool f(A* a) { return true; } } class B : public A { bool f(B* b) { return false; } } void f() { A* a = new A(); A* ab = ...
2
votes
2answers
119 views

How to iterate on a hashmap of generics?

I have an object model which have a parent, that I'll call here MyParent.java. This class have two sub-classes named MySub1.java and MySub2.java. I have two HashMaps, one containing MySub1 instances ...
1
vote
1answer
62 views

Returning immutable.Map with covariant type

I have a Container type that is covariant on its type parameter. class Container[+T](val map: Map[Int, T] = Map.empty[Int, T]){ def add[B >: T](i: Int, b: B) = new Container(map + ...
0
votes
0answers
127 views

Estimation of max likelihood sample mean and sample covariance

How do I estimate the maximum likelihood sample mean and sample covariance of the data set consisting of N = 100 2-dimensional samples x = (x1 , x2 )T ∈ R2 drawn from a 2-dimensional Gaussian ...
3
votes
3answers
227 views

Generate a data set consisting of N=100 2-dimensional samples

How do I generate a data set consisting of N = 100 2-dimensional samples x = (x1,x2)T ∈ R2 drawn from a 2-dimensional Gaussian distribution, with mean µ = (1,1)T and covariance matrix Σ = (0.3 0.2 ...
-1
votes
1answer
238 views

LARGE covariance matrix in R

from gene expression data (40000 genes (variables) x 30 observation) I want to create a 40000 x 40000 covariance matrix. This definitely is larger than my RAM. With package 'ff' I managed to ...

1 2 3 4 5 11