Longtime programmer, first time perl'er.
I have the following code that i'm trying to convert from Perl to C#.
sub make_vector {
my ( $self, $doc ) = @_;
my %words = $self->get_words( $doc );
my $vector = zeroes $self->{'word_count'};
foreach my $w ( keys %words ) {
my $value =...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.