NoRM is a MongoDB driver for .Net designed to provide access to strongly/statically-typed documents and collections. See https://github.com/atheken/NoRM for more details.
0
votes
2answers
51 views
Normalizing rows of matrix, so that their norm is equal to 1 (MATLAB)
I have a following problem - I have a matrix A of size 16x22440.
What I need to do is to normalize each row of this matrix, so that the norm of each of them is equal to 1 (for n=1:16 norm(A(n,:))==1)
...
-3
votes
3answers
73 views
What is the `norm` in matlab? [closed]
I came to the norm function in Matlab, and checked its documentation, but it wasn't clear to me. Can you just clarify what it exactly does?
Moreover, when selecting inf, which, based on the ...
2
votes
1answer
37 views
normalization of the same vector gives different values at two cases?
r_capr
Out[148]: array([[-0.42300825, 0.90516059, 0.04181294]])
r_capr
np.linalg.norm(r_capr.T)
Out[149]: 0.99999999760432712
a.T
Out[150]: array([[-0.42300825, 0.90516059, 0.04181294]])
...
0
votes
4answers
70 views
c++ template double std::complex<double> norm and product
i wrote a template class that should work for double and std::complex. as it is suppose to be, all my methods are in the .hpp file. all but one. i had to specialize a method because at some place i ...
0
votes
1answer
44 views
Is it possible to convert octave type BoolMatrix to Matrix? Calling norm(BoolMatrix) fails
I'm trying to normalize P, a bool matrix of size n x m by doing P = P/norm(P).
The call to norm() fails with:
xnorm: wrong type argument `bool matrix'. It seems that octave has a specific type ...
1
vote
1answer
54 views
Get Raw document from MongoDB through NoRM
How to get raw document through NoRM driver of MongoDB or any other way?
Like i run command on shell
db.test.find({id:"235272479242"})
0
votes
0answers
14 views
I have a prob while working on the images in the matlab
An image which is of complex numbers. i would like to normalize the matrix in order to make the values lie between 0 and 1. i need the matlab function to do that
2
votes
3answers
2k views
How should I normalize a vector in Matlab where the sum is 1?
I need to normalize a vector of N integers so that:
Each value is proportional to its original value (the value will be between 0 and 1)
The sum of all values is =1
For instance:
If I have a ...
0
votes
2answers
109 views
Does this code find the norm of k column?
Does this code work correctly in order to find the norm of K column?
double norm2x2(double A[5][7], int K)
{
K=K-1;
double max=fabs(A[0][K]);
int i;
for(i=1;i<5;i++)
...
3
votes
3answers
815 views
Norm of a arrays of vectors in python
I have this array
A = array([[-0.49740509, -0.48618909, -0.49145315],
[-0.48959259, -0.48618909, -0.49145315],
[-0.49740509, -0.47837659, -0.49145315],
...,
[ 0.03079315, -0.01194593, ...
0
votes
1answer
50 views
Difference in operation while using Macrocontent in Normal Mode in VIm/gvim (Delete a Specific Column)
Defined a macro
let @a='$F|vF|<80>kr^V5jd'
Sample Input File
+--------------------+---------+---------
| Name | S1 | S2
+--------------------+---------+---------
| ...
1
vote
1answer
84 views
NoRM -> To use or not to use?
I'm going to start learning MongoDB using the latest available .NET drivers.
However I know about this cool-looking project:
http://normproject.org/
Is it really worse to use it? (it was updated 1 ...
3
votes
1answer
785 views
When should i be opening and closing MongoDB connections?
i am very new to MongoDB and NoSQL in general and i've just started building a site with MongoDB / Norm / ASP.NET MVC 3.
I am wondering how i should be scoping the connections to my Mongo database.
...
0
votes
2answers
91 views
NoRM UpdateOne no work
I'm using NoRM + MongoDB in an application test. I found the source code of the Mongo Session http://normproject.org/samples where the method update wrapp this:
using(var db = ...
1
vote
1answer
280 views
Read file content from MongoDB using NoRM driver
I'm trying to read the image file stored in a MongoDB, to do that I have following code in my ASP.net MVC 3 projects
public FileContentResult ProfileImage(ObjectId id)
{
using (var db = new ...
0
votes
2answers
186 views
MongoDB and NoRM - Querying collection against a list of parameters
I need to query a collection based on a list of parameters.
For example my model is:
public class Product
{
string id{get;set;}
string title{get;set;}
List<string> tags{get;set;}
DateTime ...
1
vote
1answer
194 views
MongoDb with .net creating POCOs id values
I am new to MongoDb but have an existing application which would benefit heavily from using it to store encapsulated data for fast retrieval and updating.
Now the problem I have is that I have ...
0
votes
1answer
81 views
MongoDb Norm serialization
I know this is subjective, but how good is the norm serializer, particularly related to serialization of complex objects that are cyclic. Essentially I have big chunk of deserialized xml message, ...
1
vote
0answers
68 views
NoRM and Geospatial with Nested Collection
Hello I use NoRM for managing Mongo, but I am wondering if it is possible to apply and use 2d indexing with it. I have followed the recommendations on this page ...
0
votes
1answer
107 views
How can I compare 2 dates in a Where statement while using NoRM for MongoDB on C#?
I have a table in Mongo. One of the fields is a DateTime. I would like to be able to get all of the records that are only for a single day (i.e. 9/3/2011).
If I do something like this:
var list = ...
2
votes
1answer
492 views
MongoDB - Hosting on multiple servers
I am wanting to use MongoDB on my Windows Server and I am using the .NET code at:
https://github.com/atheken/NoRM/wiki/
I have 2 web servers that I need to host MongoDB on and keep the database on ...
3
votes
1answer
367 views
MongoDb NORM - Pagination and Total Documents
Using the MongoDb NORM driver, does anyone know whether it's possible to get the cursor to a 'queried' collection similar to below, so that a 'page' of documents can be retrieved as well as the total ...
0
votes
1answer
431 views
NoSQL for Asp.Net my experience with NoRM and MongoDB
I develop in the last days a web page (http://www.srtbox.com/) for testing my architecture, more info here. With NoRM, MongoLab or MongoHQ for DB hosting. And I having a a lot of errors with NoRM. ...
5
votes
2answers
365 views
Compute distance in Cartesian Coordinate System in Mathematica
Analyzing Eye-movements on a screen, I set my origin to the bottom left corner of it
(Hard to modify at that point).
Trying to compute distance between some points and the center of the screen I use ...
2
votes
2answers
555 views
Python Numpy Question and Python Version Question
I want to use Numpy with Python 3.2 and it won't work; it says I need 3.1. Does anyone know how to get around this issue, other than using 3.1? What do I have to import in order to make this work in a ...
1
vote
3answers
1k views
MongoDB text search on string array
I have the following class:
public class Movie
{
string Name get; set;
string Director get; set;
IList<String> Tags get; set;
}
How I can query the Tags? I want to query as SQL ...
1
vote
1answer
732 views
Storing multiple types of objects in one collection in MongoDB using NoRM
MongoDB is schema-less. So, I can technically store any number of different types within one collection. We currently have the need to store multiple objects that inherit from the same base class in ...
4
votes
2answers
715 views
MongoDB design - tags
I'm new with MongoDB. I have a design question, about performance of MongoDB. Lets say I have the class Movies with two properties, Name and Director. Also I want to tag this Movie Class. Is better ...
0
votes
2answers
327 views
How to perform a “decrement and delete when zero” with MongoDB
I have a document type in MongoDB (ErrorTypeOccurences) that simply has a Name and Count property. I increment/decrement the Count property every time an exception is logged (to be able to report on ...
8
votes
4answers
691 views
MongoDB, C# and NoRM + Denormalization
I am trying to use MongoDB, C# and NoRM to work on some sample projects, but at this point I'm having a much harder time wrapping my head around the data model. With RDBMS's related data is no ...
5
votes
3answers
6k views
How to calculate Euclidean length of a matrix without loops?
It seems like the answer to this should be simple, but I am stumped. I have a matrix of Nx3 matrix where there 1st 2nd and 3rd columns are the X Y and Z coordinates of the nth item. I want to ...
1
vote
1answer
574 views
Help with a generic LINQ insert method (Norm/MongoDB)
I'm trying to write a generic method to inset an object as an embedded document. The below code works already but I need to make a generic method that can be put in a repository and called from the ...
0
votes
2answers
581 views
Selecting an embedded object using LINQ (from MongoDB)
I feel like this must be simple to do but can't get it done - any help would be greatly appreciated. I am relatively new to LINQ and MongoDB.
I have the following two entities:
class ParentObject
{
...
1
vote
2answers
523 views
NoRM - FindAndModify with arguments
Is it possible to specify fields while doing a FindAndModify, so only one field is returned?
Also, is it possible to do an upsert, to create the object if it doesn't exist.
As per:
...
0
votes
1answer
381 views
Mongo DB with NOrm vs SQL Server 2008 R2 with linqToSQL in ASP.NET MVC 3 [closed]
do you have any experience with mongo db and NOrm in asp.net mvc? i have read that mongo is faster than sql server 2008. I know that mongo is schema free and i can use the type List. Why do I have to ...
1
vote
4answers
728 views
MongoDB + NoRM- Concurrency and collections
Lets say we have the following document structure:
class BlogPost
{
[MongoIdentifier]
public Guid Id{get;set;}
public string Body{get;set;}
....
}
class Comment
{
[MongoIdentifier]
...
1
vote
1answer
1k views
MongoDB C# : use official driver and Norm or wait for linq implementation, sugestions?
I searching to migrate my cms from SQL to NoSQL MongoDB using C#. I have created the first classes migration but i'm not happy with future evolutivity and stability using currents C# drivers. I have ...
3
votes
2answers
344 views
Polymorphism problem in MongoDb with NoRM driver
I have classes
[MongoDiscriminated]
public abstract class Content
{
public int? Id { get; set; }
public int? ParentId { get; set; }
public string Slug { get; set; }
public string Path ...
0
votes
1answer
386 views
Need to build a generic query method using LINQ expressions
I'm new and this is probably very trivial but I have the following method which works fine, using LINQ for MongoDB:
public T Single<T>(System.Linq.Expressions.Expression<Func<T, ...
1
vote
1answer
714 views
how to store files using MongoDb C# Norm
Can someone help me with a complete sample how to store a file using MongoDB, C# and Norm and manage the limitation size. I have read some ideas about but is not really clear for me.
Thanks.
4
votes
3answers
1k views
c# MongoDB (noRM) - Repository pattern with embedded documents
I’m developing an application with a model similar to Stack Overflow (question / answer etc...)
Modelling a NoSQL Forum Application with C# / ASP.net MVC
The model looks something like this ...
1
vote
1answer
172 views
Preserve Joins by code in MongoDB
What are the best solution to preserve left joins in a NoSQL solutions like MongoDB/Norm if you can not modify the complete architecture of one cms. Experiences, Samples, Cost.
Thanks.
0
votes
1answer
449 views
DbReference with custom MongoIdentifier (MongoDB & NoRM)
I'm a new Mongo user (haven't gotten used to the name even... makes me
laugh every time), and I have this problem (feeling mongo).
I have a class "User", with the MongoIdentifier defined like this:
...
1
vote
1answer
277 views
C# MongoDB driver trouble( NORM)
I have used NORM driver in production. New year holidays - it is pretty cool, so my project get high loading and i want to set up a replication set, but have a problem - Norm does not support ...
0
votes
1answer
141 views
NoRM MongoDB : Build complex filters or add filters to existing queries
How to build multicriterial queries in Norm driver adding extra filters to one existing base query? Thanks.
var coll= mongo.GetCollection<TaggedContents>();
var coll2 = ...
0
votes
2answers
331 views
Exact Contains Match on a Sub Collection
Using mongodb with the NoRM driver I have this document:
{
"_id" : ObjectId("0758030341b870c019591900"),
"TmsId" : "EP000015560091",
"RootId" : "1094362",
"ConnectorId" : ...
2
votes
2answers
495 views
Using the HiLoIdGenerator in NoRM for MongoDB to create a unique identifier
I have been struggling a little with the HiLoIdGenerator that comes with NoRM (http://normproject.org/); I want to use it to generate a unique identifier that I can use as a SLUG for my blog posts. At ...
2
votes
2answers
891 views
how to add new field in mongodb, if i use norm or csharp-mongodb drivers
I have two projects which are based on mongodb database. One project use csharp-mongodb and another - norm driver.
I make request to my db only with generic methods like GetCollection.
How can i add ...
0
votes
3answers
635 views
Using NoRM to access MongoDB from F#
Testing out NoRM https://github.com/atheken/NoRM from F# and trying to find a nice way to use it. Here is the basic C#:
class products
{
public ObjectId _id { get; set; }
public string name { ...
3
votes
2answers
600 views
Modelling a NoSQL Forum Application with C# / ASP.net MVC
I'm currently developing a Forum (Question / Answer) based application.
Using C# ASP.net MVC and MongoDB for data storage.
I'm currently looking at the model.
I was thinking of having separate ...