Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

spin vector

@spin vector
About
Posts
85
Topics
38
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • newbie question: xsd -> unpopulated xml
    S spin vector

    When I use the VS2005 xsd gui (which I love) to build a schema what's the simplest way to generate a valid, unpopulated xml file? Do I have to write some C# code or is there a menu-driven tool that I'm missing. Thanks.

    XML / XSL xml question csharp database

  • repo management with incoming open source updates
    S spin vector

    Where is the best place, if at all, here on CP to ask about best practices for maintaining, updating, and merging a repo when there are regular updates from an external open-source site ? this is not because I want to have a repo of their repo, but rather I make various modifications to the open source code (for my own use for the time being) but I want to stay current w/ the latest release. Where should I post a more detailed entry? thx

    IT & Infrastructure question announcement

  • Ruby section
    S spin vector

    IronRuby is on the way, following in the footsteps of IronPython. These are both MS built. That should be enough reason, no?

    Site Bugs / Suggestions ruby

  • Ruby section
    S spin vector

    We should have a section for scripting languages, especially latest / greatest such as Ruby. The format of The Code Project is excellent and it would be great to see it extended.

    Site Bugs / Suggestions ruby

  • newbie question: update across 2 tables
    S spin vector

    I have 2 tables. I want to use info from the second table to update column values in the first. Consider: T1: id time1 time2 1 8:00 null 2 8:01 null 3 8:02 null 4 8:12 null T2: id time2 2 8:09 4 8:15 What I want is: T1: id time1 time2 1 8:00 null 2 8:01 8:09 3 8:02 null 4 8:12 8:15 Is there an sql command sequence that can achieve this? Its easy to think about it iteratively, but in the absense of explicit iterators in sql (to my understanding) I hope that there's another way. Its clear that I can exec the join: select T1.id, T1.time2 from T1, T2 where T1.id = T2.id but using this as part of an update is broken (well, because I don't know how to do it): (wrong:) update T1 set time2 = ( select time2 from T1, T2 where T1.id = T2.id) where id = ( select id from T1, T2 where T1.id = T2.id ) how can I write an on T1.time2 that matches T1.id = T2.id and updates the T1.time2 null with the T2.time2 ?

    Database question database tutorial announcement

  • Lock free data structures
    S spin vector

    Mind you -- that most are patented it a great thing -- you can read exactly how it is done. www.uspto.gov or patents.google.com. I'm not advocating IP theft, but the constitutional point of the patent system is to exchange temporary monopoly for full public disclosure. The best parts of a patent for non-lawyers is the background and following 'spec' (specification). Good luck, spin-vec

    Algorithms csharp asp-net question

  • unmanaged c++ VS2005
    S spin vector

    I'm an odd newbie: I need to compile unmanaged c++ code in VS2005. I've only compiled managed c# in VS'03/'05. What switches do I need to set, and do I need to also do something with the linker. Thx.

    C / C++ / MFC csharp c++ visual-studio

  • Intel MKL
    S spin vector

    Hey, I didn't know about this. Looks a bit new and incomplete but certainly interesting to get going with, and perhaps to contribute to. Thanks.

    Algorithms csharp tutorial question

  • windows daemon
    S spin vector

    Just as a community note: a windows service is not available w/ VS standard edition -- you must go higher. Thx

    C# question

  • Rotation Matrix
    S spin vector

    You need to apply a unitary matrix transform to your coordinates (http://en.wikipedia.org/wiki/Unitary\_matrix). that is, if you have a point in R3 represented by the vector v_o, then v = U v_o is a rotated coordinate. You need a unitary matrix so that no coordinate in the new basis is scaled with respect to the original basis. Concretely, if you start with an orthonormal system you want to end with an orthonormal system. See rotation matrices on wikipedia: http://en.wikipedia.org/wiki/Rotation\_matrix for more details of making the appropriate R3 rotation matrix. good luck

    Algorithms question graphics help

  • Connectivity of MATLAB and VC.NET
    S spin vector

    Reading your brief it seems to me that you should look into the Matlab .NET builder. Its very expensive ($10k) but you can directly link the core matlab engine to .NET, run numerics and pull up graphs, and the matlab package does all the type marshalling for you. You can deploy your whole .NET application w/ the matlab engine w/out license fee (like to a server or something). The matlab core takes 100MB ram and is a singleton (you can have many apps using it). I've used it at work myself and I do highly recommend it if you find its the say to go.

    Article Writing csharp security help tutorial

  • Intel MKL
    S spin vector

    has anyone marshalled the Intel math kernal library to managed code (aka C#)? An example would be excellent. Thx

    Algorithms csharp tutorial question

  • windows daemon
    S spin vector

    How do I create a windowless daemon in VS2005? Thx

    C# question

  • minimum TimeSpan
    S spin vector

    I'm trying to measure TimeSpans < 15ms on Windows XP. I recall hearing somewhere that windows won't return anything accurate under 15ms. Is that correct? Is there a way to measure down to the ms level? Thx

    C#

  • element or attribute
    S spin vector

    Good, thanks.

    XML / XSL question

  • element or attribute
    S spin vector

    What's a good rule of thumb to use when deciding to add an element or attribute to a datatable?

    XML / XSL question

  • xml attributes and database representation
    S spin vector

    Hello, I'm new to attributes. Attributes seem to solve a problem I have with my data representation. However, how are attributes stored in a database? Specifically, I'm using VS'03 to build a typed data schema, wherein I create and populate some elements. I can use the SqlDataAdapter to load/retrieve from the dB, no problem. Now, I add attributes to the schema, how do I get them into the dB and what is the representation? Thanks. NYC Traveler

    Database database question xml visual-studio help

  • xml attributes and sql database
    S spin vector

    Hello, I'm new to attributes. Attributes seem to solve a problem I have with my data representation. However, how are attributes stored in a database? Specifically, I'm using VS'03 to build a typed data schema, wherein I create and populate some elements. I can use the SqlDataAdapter to load/retrieve from the dB, no problem. Now, I add attributes to the schema, how do I get them into the dB and what is the representation? Thanks. NYC Traveler

    C# database question xml visual-studio help

  • xml attributes and sql database
    S spin vector

    Hello, I'm new to attributes. Attributes seem to solve a problem I have with my data representation. However, how are attributes stored in a database? Specifically, I'm using VS'03 to build a typed data schema, wherein I create and populate some elements. I can use the SqlDataAdapter to load/retrieve from the dB, no problem. Now, I add attributes to the schema, how do I get them into the dB and what is the representation? Thanks. NYC Traveler

    XML / XSL database question xml visual-studio help

  • Extract data out of a LARGE text file
    S spin vector

    Also, rereading your original post, you need some grammatical structure here. Read the articles on Yacc, or for .NET anything that is a Yacc-like parser. The article on http://www.codeproject.com/csharp/minossecc.asp seems helpful. Search around, I can't put my finger on it but there are other non-Java .NET parsing meta-languages to help with the file structure. There's always MKS Lex and Yacc -- I've used a long time ago to great effect, not too hard to learn (days). But, find something free if possible. Cheers.

    C# question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups