The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
11 views

How to config a singular route with namespace in Rails 3?

In my routes file I have the following: namespace :admin do authenticate :user do resources :my_controller, :path => 'some-path' do member do put 'action1' ...
0
votes
0answers
40 views

Singularize portuguese [closed]

Does anyone know a java or javascript code for making plural words to singular in portuguese? In order to activate an algorithm, I need to singularize words. Thanks.
0
votes
2answers
81 views

Is there a one-liner for dealing with singular/plural words in common languages?

All too often I see websites do things like 1 views, 1 days left, or 1 answers. To me this is just lazy as its often as easy to fix as something like: if(views == 1) print views + " view" else ...
0
votes
0answers
42 views

Sparse Matrix Editing

I'm new here so I'm not sure if it's asked before, but I did look out to see if it's there. I'm interested if anyone has encountered similar problem. I have sparse matrix that is being LU decomposed ...
0
votes
1answer
111 views

Best practices or convention for sql table naming? [closed]

I read a lot of good cases where some people says that it's better to use Singular names on tables, for example if you are going to use some code generators like Entity Framework or another CG. I ...
1
vote
2answers
112 views

solve() crashes when aimed at singular matrices

I am trying to solve a system of linear equations in the least-squares-style. Using armadillo and its solve function I want to calculate the three coefficients of a parabolic fit. vec coeffs = ...
0
votes
0answers
83 views

R error system is computationally singular using pgmm plm

I built the generalized method of moments model to estimate the sales rank in the bookstore using plm package in R. The equation is: data1.gmm <- pgmm(dynformula(lnsales_rank ~ ln_price + ...
3
votes
1answer
121 views

How to find degenerate rows/columns in a covariance matrix

I am using numpy.cov to create a covariance matrix from a dataset of over 400 time series. Using linalg.det gives me a value of zero so matrix is singular. I can use linalg.svd to see that the rank is ...
0
votes
0answers
57 views

Singular controller mapping a devise user, id added at the end of the url in some case

I use devise for my users. I want to allow my user to access to an account page (compte mean account in french) where account infos are available and editable. To do so i use the controller comptes ...
0
votes
4answers
109 views

Singular or Plural setting to a variable. PHP

There are a lot of questions explaining how to echo a singular or plural variable, but none answer my question as to how one sets a variable to contain said singular or plural value. I would have ...
0
votes
0answers
83 views

Strange Integration results - function with known singularities - GSL QAGS/QAGP

I have a function to be integrated which i am currently using gsl_integration_qags for. I can run the function thousands of times without error, receiving good results, but when i give it to a ...
0
votes
1answer
229 views

Q job unsuccessful mahout ssvd

I'm trying to run ssvd on some tfidf-vectors in mahout. When I run it in Java code as follows (with mahout 0.6 jars), it works fine: public static void main(String[] args){ ...
0
votes
0answers
13 views

What is command to calculate minimal standard basis?

What is command to calculate minimal standard basis? After using std(T), what command to calculate minimal standard basis instead of using one command minstd. As i would like to search algorithm for ...
0
votes
1answer
302 views

MATLAB Integration Situation

I want to evaluate the integral of this function : (cos(t^2)*sin(t)^2)^(1/2) over the period -15*pi:50*pi I am using these : f=@(t) (cos(t.^2).*sin(t).^2).^(1/2); quad(f,-15*pi,50*pi) ...
7
votes
2answers
334 views

Return elements of the Groebner Basis as they are found

This question could refer to any computer algebra system which has the ability to compute the Groebner Basis from a set of polynomials (Mathematica, Singular, GAP, Macaulay2, MatLab, etc.). I am ...
0
votes
1answer
211 views

rails singularize to a / an

Is there a method that works similiar to singularize to prepend a or an according to the word? like f(apple) # => an apple f(carpet) #=> a carpet thanks
0
votes
3answers
378 views

Mysql select on word (plural, singular)

In my Mysql DB I have a list of terms like (With First letters Capital and most of the time plurals) Hairdressers Restaurants Beauty Salons Fournitures For Restaurants On my website I have a ...
1
vote
0answers
190 views

SSRS Report Manager rules for generating Models from Data Source with plural table names

I am using the SSRS Report Manager web interface to generate Data Models for a SQL Server 2008 R2 Data Source. The database contains a number of tables with names which are plurals. In the generated ...
5
votes
4answers
3k views

rails singular resource still plural?

I have a search route which I would like to make singular but when I specify a singular route it still makes plural controller routes, is this how it's supposed to be? resource :search Gives me ...
0
votes
2answers
34 views

Rails: routing question

I have this in my routes: resources :cvits which produces these routes: cvits GET /cvits(.:format) {:controller=>"cvits", :action=>"index"} POST /cvits(.:format) ...
0
votes
2answers
183 views

Handle Ruby on Rails resource when the singular is also plural?

Whats the best way to handle a singular resource, that itself is plural. For example a "settings page", that displays a selection of different settings. As I am displaying a single "Settings" ...
2
votes
6answers
578 views

Fixing the singularity of a function

Assume you have a function like F = lambda x: sin(x)/x Evaluating F(0.0) would result in a divide by zero warning, and would not give the expected result of 1.0. Is it possible to write another ...
0
votes
2answers
275 views

HTML Canvas: Saving a graphic element to be modified later by other users

I would like to face a problem for which I haven't seen a solution looking around in Internet. This is: I need to save the elements drawn by WEB users on a canvas space not as a flat image, but each ...
0
votes
1answer
171 views

Using Devise with a singular Resource

I'm a newb with Rails and am trying to get out my first Rails 3 app with Devise. I have a situation where pretty much everything on my site is specific to a user. I'm creating a kind of private ...
2
votes
4answers
1k views

Plural and Singular terms in PHP

I am doing an amount of users check for our website, below is the code. How can i use the word "user" if there is only 1 account and how can i use "users" if there is >1. code: $result = ...
6
votes
1answer
298 views

How can I implement “natural” url scheme routing tables in ASP.NET MVC

I would like to specify my routing tables such that they would feel much more "natural" /Products /Product/17 /Product/Edit/17 /Product/Create Close to the defaults configuration but such that ...
2
votes
3answers
1k views

pluralize and singularize for spanish language

sorry for my english... I have a rails application developed to spain, therefore, all content is in spanish, so, I have a search box to search in a mysql database, all rows are in spanish, I'd like ...
27
votes
3answers
3k views

Ruby on rails: singular resource and form_for

I want user to work with only one order connected to user's session. So I set singular resource for order routes.rb: resource :order views/orders/new.html.erb: <%= form_for @order do |f| %> ...
1
vote
1answer
448 views

Assigning boost::iterator_range to singular range

I'm using Boost.Range to pass around some data and a container class for this data. The data is loaded in a different thread and may in some cases not be ready yet. In this case the container is ...
1
vote
2answers
228 views

Mixing Plural AND Singular naming

here's the quick version of the situation: We are developing some C# App and the team decided this Naming convention: We have for example an entity called User which is stored in the DB, we have the ...
1
vote
1answer
723 views

Rails controller method going to plural form

I'm new to rails! Ok, I am trying to set up a user signup form. It is mapped as a singular resource in the routes map.resource :user And trying to create the user through the console works fine. ...
6
votes
3answers
4k views

Test if a word is singular or plural in Ruby on Rails

Quick question. How can I test a word to see if it is singular or plural? I'd really like: test_singularity('word') # => true test_singularity('words') # => false I bet rails is capable! ...
3
votes
7answers
2k views

best practice(s) for singular word or plural words?

This is about best practices in general, not specific for a single language, database or whatever We all have to deal with generated output where you can be reporting "one products" or "two product". ...