CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: tbadlov

Search: Search took 0.02 seconds.

  1. Thread: Array Copy

    by tbadlov
    Replies
    4
    Views
    6,010

    Re: Array Copy

    Thanks. I'll look more into the array class and find out what else is possible with it.
  2. Thread: Array Copy

    by tbadlov
    Replies
    4
    Views
    6,010

    Re: Array Copy

    Essentially I did use System.arraycopy but I realized that I am printing the array wrong.

    I should use:




    private static void print(double[] lines) {
    for(int i = 0; i <...
  3. Thread: Array Copy

    by tbadlov
    Replies
    4
    Views
    6,010

    Array Copy

    Hi all,

    This may be a stupid question, but how do you copy the content of one array to another.
    I tried many different ways but it keep give the location of the pointer in memory rather than the...
  4. Re: Feed data from CSV to variables as pair of numbers

    Option 2 worked fine for me.

    Thanks a lot!
  5. Re: Feed data from CSV to variables as pair of numbers

    Silly mistake, fixed this.


    I'll try the rest now and get back to you.

    Thank you so much for clarifying.
  6. Re: Feed data from CSV to variables as pair of numbers

    Thanks for your reply. I started doing this:



    import java.io.*;

    public class InputTest {
    public static void main(String[] args) {
    double[] xlines = new double[0]; //array to...
  7. Feed data from CSV to variables as pair of numbers

    Hello all,

    I have a project fro school i need to some help with. I am calculating regression on a set of numbers from a CSV file. The CSV file has a pair for number where each line represent a...
Results 1 to 7 of 7





Click Here to Expand Forum to Full Width

Featured