Sum in a 3D chart

Hello

I have a table of 3 dimension. On the 10 lines, I have 10 coefficients. The collums I a representig index data for whitch the coefficients were built. The third dimension, the page, I have, in fact, the temporal evolution of the structure of the index-factor. What I need to do, is to do a simple sum like this: for each combination of line-collum I summarized the corresponding items in the pages. I don't know hot to do this...

Can someone help me please?

See below.

Tags: NI Software

Similar Questions

  • Try to combine the two queries

    I have two queries of tables in which I combine and summarize the results in a single value. Could someone let me know what it is that im missing here? Thank you

    Deanna

    Output current:

    SUM
    5
    10

    The output I want to see:
    SUM
    15


    My paintings:

    TABLE 'CHART '.
    CASE_NUMBER - VARCHAR2
    PER_INV_FATALITIES - NUMBER (5.0)
    ASSIGNEDDATE_CHART - DATE

    TABLE "VEHICLES".
    CASE_NUMBER - VARCHAR2
    VEHICLE_FATALITY #-NUMBER (5.0)



    Current SQL query:
    SELECT SUM(ct) FROM (
    SELECT SUM(vehicle_fatality#) ct FROM vehicles inner join chart
    on vehicles.case_number=chart.case_number
    WHERE vehicle_fatality#>=1 AND 
    ASSIGNEDDATE_CHART BETWEEN TO_CHAR(TRUNC(SYSDATE,'RR'),'DD/MON/RR')AND SYSDATE)
    union all
    SELECT SUM(ct) FROM (
    SELECT SUM(per_inv_fatalities) ct FROM chart
    WHERE PER_INV_FATALITIES>=1 AND 
    ASSIGNEDDATE_CHART BETWEEN TO_CHAR(TRUNC(SYSDATE,'RR'),'DD/MON/RR')AND SYSDATE);

    Hello

    Instead of:

    SELECT  SUM (ct)
    FROM     (query_a)
    UNION ALL
    SELECT  SUM (ct)
    FROM     (query_b)
    ;
    

    do

    SELECT     SUM (ct)
    FROM     (          query_a
         UNION ALL     query_b
         )
    ;
    

    SUM without GROUP BY will produce a line.
    If you do a UNION ALL of two queries of this type operation, you will get two rows.
    The UNION ALL first, then make a single SUM on the combined results.

  • The numbers will not calculate sum?

    Disconcerting symptom... working in file of numbers with four worksheets. One cannot calculate anything, all the rest are fine.

    I tried format cell data corresponding to the leaves 'automatic', 'number', 'currency' - three spreadsheets are fine, one can simply not compute anything.

    See chart - sum appears on one, is Virgin on the other.

    Hoping that the software isn't broken... what could cause this?

    Fixed... but always puzzled as to why.

    Everything just closed and reopened the document numbers work and things normally again.

  • How to see the chart with labview WebService

    Hi all

    I am looking in the labview 8.6 web services option. I've seen some simple examples that can be found here on the website of the NC. But these examples generally deal with static data. As in the example of the sum, you enter your parameters in the URL, and the result is displayed in your web browser.

    What I want to do now is display a chart in my web browser that show a mobile signal. But I'm having a hard time the realization of this. How to make this work? Do I need AJAX, Measurement studio? or is it sufficient to use the labview web service.

    Best regards.

    ynse,

    You are right that web services do not require runtime must be installed on the client. Unlike the remote panels that make the VI on the client, web services nothing do with the client at all. Simply, the web service is running on the server and returns data to the client. The customer can return the data, but he wishes.

    Your question about studio of measure and AJAX is really asking questions on the client end. You can certainly use the AJAX controls that are updated with the data they acquire a web service from LV. A graph, however, is extremely difficult because javascript has not yet drawing capabilities.

    Web graphics I've seen do one of the following:

    -'Draw' the points on graph using HTML elements with javascript. It of complicated, would be difficult to get working on all browsers and would have problems of severe performance with large data sets.

    -The web service returns an image of a graph that refreshes the client. It takes more bandwidth than necessary, and the server must be able to take a snapshot of the graph. (LV real-time cannot use this approach.)

    -The graph is rendered using a plugin for the browser. There are many technologies that can be used to do this: Java, Flash, Silverlight, etc. The example you mentioned used flex from Adobe which is a valid approach that you should not be quick to dismiss.

    Measurement Studio is not my area of expertise, and I don't know what it can provide for the creation of a graph. What it provides probably made use of one of the above methods.

    Nathan

  • Waveform manipulation of the bytes in a byte array and display in 16 bit int signed in a chart

    Hello, I read in two bytes using a VISA READ and then output is a string. However, I want to be able to access these bytes individually because I need left move the first octet 8 places and then add it to the second byte and then left move their sum 4 places to the left gives me a 16-bit signed int. Then I need to do this show in a waveform chart. Can anyone help please?


  • How graphic how the sum of several metrics of in a dashboard.

    I'm looking to find out how the graph of the sum of multiples of the metric, as CPU ready, or latency of disk in one graph on a dashboard / report.

    An example would be showing collective management s VM in balloning of CPU and memory of the pool on line on a chart.

    Thank you!

    If you want the chart to reflect everything that you can do the stacking graphics option which will be sleeping all values.

  • Adding key event to different parts of a pie chart

    Hi, I'm working on a Blackberry app I need to create pie chart from an array of integers. Unfortunately I could not find any graphics APIs for Blackberry (is there really one?), so I've implemented using the method (graphics.fillArc).

    Here's my PieChart class:

    public class PieChart extends Field
    {
        //declaring private variables to store data
        private int[] percentage;
        private int[] angles;
        private int totalRecords;
    
        //declaring colors to be used in pie chart
        private final static int[] availableColors = { 0x00CDCD, 0xFF0000, 0xFF00FF, 0xCC9900, 0x9900FF, 0x990000, 0x66FF00, 0x6600FF, 0x3300FF, 0x0000FF};
        private final static int totalAvailableColors = 10;
    
        //assuming 250 for chart width and height
        private int chartWidth = 250;
        private int chartHeight = 250;
    
        public PieChart (int[] marks)
        {
            //calculating percentages and angles covered by each record
            totalRecords = marks.length;
            int sum = 0;
            for (int i = 0; i < totalRecords; i ++)
                sum += marks[i];
            percentage = new int[totalRecords];
            angles = new int[totalRecords];
            for (int i = 0; i < totalRecords; i ++)
            {
                double percent = marks[i] * 100 / sum;
                percentage[i] = (int) percent;
                angles[i] = (int) (percent * 3.6);
            }
        }
    
        protected void layout(int width, int height)
        {
            //setting the field to cover the whole width of display
            setExtent (Display.getWidth(), chartHeight);
        }
    
        protected void paint(Graphics graphics)
        {
            //generating a random color from predefined colors
            Random random = new Random();
            int lastAngle = 0;
            int previousColorIndex = -1;
            int startColorIndex = random.nextInt(totalAvailableColors);
            int currentColorIndex = startColorIndex;
    
            //adding offset to create the chart at center of the screen
            int offset = (Display.getWidth() - chartWidth)/ 2;
    
            for (int i = 0; i < totalRecords; i ++)
            {
                //if last record, cover the remaining area of the circle
                int finishAngle = i == totalRecords - 1 ? 360 - lastAngle : angles[i];
    
                //drawing the arc
                graphics.setColor(availableColors[currentColorIndex]);
                graphics.fillArc(offset, 0, chartWidth, chartHeight, lastAngle, finishAngle);
    
                //calculating text position to print the percentage
                int txtX = (int) (125 + 75 * Math.cos(Math.PI * (lastAngle + angles[i] / 2)/180));
                int txtY = (int) (125 - 75 * Math.sin(Math.PI * (lastAngle + angles[i] / 2)/180));
                txtX -= graphics.getFont().getAdvance(String.valueOf(percentage[i] + "%")) / 2;
    
                //drawing the percentage over the respective section
                graphics.setColor(Color.WHITE);
                graphics.drawText(String.valueOf(percentage[i] + "%"), txtX + offset, txtY);
                previousColorIndex = currentColorIndex;
    
                //tracking total angle used so far
                lastAngle += angles[i];
    
                //checking if color generated is previous color or starting color, if it is the last of the record
                do
                {
                    currentColorIndex = random.nextInt(totalAvailableColors);
                }
                while ((i == totalRecords - 1 && currentColorIndex == startColorIndex) || currentColorIndex == previousColorIndex);
            }
    
        }
    
    }
    

    Now, when the user touches a any part of the generated pie chart, I need to show him the details of this particular section, which is different for different parts of the chart (for example. Say that if brands of students is used, during the click on an article I have need to display information about the marker). From my understanding, different parts of the pie chart must be different fields to contain the touch individual events. However, it seems there is no way to create irregular fields, and I can't reach camembert if I use fields rectangular for different parts of the chart (such as it's going to tear the pie! ).

    Any suggestions?

    BTW I develop for BB OS 6.0 (Blackberry Torch).

    The word dreaded no programmer doesn't want to hear: math. You'll just have to figure out where all of your divisions are based off of their percentages, determine where the touch and then discover what segment is in.

    In fact, I don't think it's going to be too bad, just refresh you on geometry.

  • Pie chart report syntax

    What is the correct syntax for a 'pie chart - multiple' report in Oracle SQL Developer? I am creating master-child where the master is a bar graph and report the child reports are (multiple) pie charts. The master report looks good, but I can't the child reports to display in the form of pie charts. The child statement correctly table view, but if I change the pie chart format, then I get the error message: 'data is zero or negative value and can not be displayed'.


    Here are the current request for reports of the child:

    SELECT the year, college_name, student_id, count (student_id) as count_ids

    DE registration

    WHERE college_name =: COLLEGE_NAME

    GROUP BY year, college_name, student_id

    ORDER BY year, college_name, student_id;

    This is the report of the child table:

    data.jpg

    It's about what I want pie charts to look like:

    pie_charts.jpg

    It works if you remove the name of college?

    I am able to make a graph to child multiple sectors out of a bar parent graph, without having to configure anything on the properties of the child report definition data

    Here's my child report query:

    Select the year, the team, sum (points) of hockey_stats

    where drive =: PLAYER

    Group of the year, the team

    order by year desc

    If you run your query, you have nulls, zeros or negative values for count (student_id)?

  • How to get the user clicks SeriesName APEX 4.2 flash chart and defined on a hidden element?

    Hello

    I'm developing a graphic clickable flash of APEX, which should be linked to a specific set of data on another page using the SeriesName (clicked several sets of cards).

    (Returned by a function) sql for APEX chart is

    Select distinct null link, d. DNAME label
    , sum(e. SAL ) over (partition by e. ( DEPTNO salary ( )
    , sum(e. Comm ) over (partition by e. DEPTNO ) comm
    de d Dep. , emp e
    e. DEPTNO = d . DEPTNO

    Currently I am able to disply SeriesName (e.g. salary or Comm) on the 2D chart. This is done by including {% SeriesName} Custome XML.

    But I am unable to detect which series name, the user clicks on - pay is comm.  for example, I am not able to enter the name of the series clicked and set it to a hidden item (called P38_SERIES_NAME).  I have to use JavaScript to achieve this? If so, how?

    The reason why I want to use the unique sql is due to that I will have to call a function to return the dynamic and running sql code, I don't know how many series I. i.e. could be comm, average age, salary, bonus etc...

    What is the easiest way to achieve this?   I use APEX 4.2 and Oracle 11 g.

    Thanks for your advice.

    Concerning

    Susanna Su

    Susanna,

    What you experience is the difference between session state and the value of the element on the page. The URL you have is generated on the rendering of the page and use the value of current session state of the question right now. Then when the page is on the client side and that you set the value of the item through javascript this value is still next to the customer and not in session state. Put the value in session state would not matter, however, because the link has already been made. Your best option is to send the page, ensuring the correct value is set to session state and use a branch in present after the process to redirect the user to the correct page.

    I have also described this here: https://forums.oracle.com/message/11110579#11110579

  • Studio: Chart based on the day/month/year

    In the Studio, there is a requirement for us display the chart based on the day/month/year.

    Because the Date attribute does not appear as a Dimension in the graphics configuration list, I divided attribute date day/month/year attributes and inspiring that I generated a sample chart

    But now I am facing a problem

    Suppose that there are records for only July and Ms then the graph shows in July and Aug, it does not show in August.

    I agree that there is no record for August in my field of data which is the reason why Augustus is not displayed in the table. But according to our requirement, we must view August as well as with zero count.

    I'm curious to know if there is a way to do it.

    The idea behind the record calendar type is a secondary, new record type are you introduction that completes your registration type "sale."  The records you provided would be your 'sales' record type, not your type of registration of "calendar".  To use your example, your recordings of 'sale' would look like what provided you:

    =============== RECORD ==================

    ID: 1

    Sales_Amount: 1000

    Month: October

    RecordType: sale

    Date: 2012-10 - 01 T 00: 00:00.000Z

    day: 01

    year: 2012

    =============== RECORD ==================

    ID: 5

    Sales_Amount: 1000

    Month: December

    RecordType: sale

    Date: 2012-12 - 01 T 00: 00:00.000Z

    day: 01

    year: 2012

    ==========================================

    And your registration type "calendar" would be charged later.  I usually provide a single record of short for all day for this record type:

    =============== RECORD ==================

    ID: 1

    Month: October

    RecordType: calendar

    Date: 2012-10 - 01 T 00: 00:00.000Z

    day: 01

    year: 2012

    =============== RECORD ==================

    ID: 2

    Month: October

    RecordType: calendar

    Date: 2012-10 - T 02, 00: 00:00.000Z

    day: 02

    year: 2012

    ==========================================

    (and so on, one for each day until today... yawn)...

    =============== RECORD ==================

    ID: 790

    Month: July

    RecordType: calendar

    Date: 2013-07 - 31 T 00: 00:00.000Z

    day: 31

    year: 2013

    ==========================================

    Thus, when you write a statement of EQL as:

    RETURN foo AS SELECT

    Sum (Sales_Amount) AS "TotSales.

    GROUP BY month

    You will get a bucket of months for every month, where the record type "calendar" will not fail to offer a month when sales do not offer it... aka. Fill the "holes".

    HTH,

    Dan

    http://branchbird.com

  • Excel in Indesign Table chart?

    I can import a MS excel chart in a table in Indesign? And how do I do it?

    Hi Pudgesan,

    You can paste data from an Excel worksheet into an InDesign document or document. The Clipboard handling preference settings determine how text pasted from another application is formatted.

    If the text is selected, the information in the form of tabulated text unformatted, which you can then convert to a table.

    If All the Information is selected, the pasted text appears in a formatted table.

    If you want more control over the formatting of the imported table, or if you want to keep the formatting of the spreadsheet, use the import command to import the table. If you want to keep a link to the spreadsheet, select Create links when placing and spreadsheet text files in the file management preferences.

    I hope this helps.

    Kind regards

    Sumit Singh

  • Horizontal bar - Apex 4.0 chart

    Hi all

    Please find my below requirement and help me to achieve this.
    SELECT empno,ename,res_from_date,res_to_date FROM EMP WHERE DEPTNO = 10;
    
    EMPNO     ENAME                RES_FROM_DATE                RES_TO_DATE 
    7839      KING              01/01/2013                      03/31/2013 
    7782     CLARK             01/01/2013                      05/31/2013 
    7934     MILLER            01/01/2013                      01/31/2013 
    From the data above, it is clearly stated that the employee King has been reserved since 01/01/2013-03 31, 2013 and even others.

    Now my chart should be this way, X axis is filled with all the months of the current year (Jan - dec) and my axis must be filled with the names of the employees. Also against the King employee, I need a bar filling the months from January to March and likewise for others too horizontal.
    Emp_Name                                    
    (Y Axis)
    
    King
                                        
    Clark
                                        
    Miller                                    
    
    Months                     Jan            Feb                        Mar                       Apr                        May                    Jun
    (X Axis)
    Please help me to go further.

    Thanks in advance.

    Kind regards
    Santini.

    It is a little complex, but the solution is here: http://ruepprich.wordpress.com/2011/03/31/apex-4-charts-dynamically-adding-a-series-2/

    Look at the table about 25% to the bottom of the page. Imagine the abbrevs State (TX, OK) replaced by your employee number.

    Here it is for the two States, and then they show how to make "N" States - data dependent.

    SELECT NULL
          ,sales_date
          ,SUM(decode(state, 'TX', sales_amount, 0)) "Texas"
          ,SUM(decode(state, 'OK', sales_amount, 0)) "Oklahoma"
     FROM sales
    GROUP BY sales_date
    ORDER BY sales_date;
    

    In this case, sales_date came out RES_MONTH
    No AMOUNT is desired,
    Sales_Amount is 1 (only defined at a level "resource_unit", i.e. 1 month/person)

    So I think you would have something like:

    SELECT NULL
          ,RES_MONTH
          ,decode(ename, 'CLARK', 1, 0)) "CLARK"
          ,decode(ename, 'MILLER', 1, 0)) "MILLER"
     FROM employee-table
    ORDER BY RES_MONTH;
    

    Good, you want EMPNO. You may want to NULL instead of 0, so an employee disappears when not attributed.

    SELECT NULL
          ,RES_MONTH
          ,decode(EMPNO, '7839', 1, NULL)) "7839"
          ,decode(EMPNO, '7782', 1, NULL)) "7782"
          ,decode(EMPNO, '7934', 1, NULL)) "7934"
     FROM employee-table
    ORDER BY RES_MONTH;
    

    Then converted the chart to use a function that returns a query.

    I'm sure there are mistakes and shortcomings here, but maybe you get the idea.

    Howard

  • Pivot - sum with two Tables

    I try to use Pivot by joining with another table, but I am getting an error. I created a few generic test charts and data.
    CREATE TABLE Employee
    (
       empno         NUMBER (3) NOT NULL,                           -- Employee ID
       ename         VARCHAR2 (10 BYTE),                          -- Employee Name
       hireDate      DATE,                                  -- Date Employee Hired
       orig_salary   NUMBER (8, 2),                              -- Orignal Salary
       deptno        NUMBER                              -- Region where employeed
    )
    
    CREATE TABLE departments (deptno   NUMBER, dept_name VARCHAR2 (30))
    SET DEFINE OFF;
    Insert into EMPLOYEE
       (EMPNO, ENAME, HIREDATE, ORIG_SALARY, DEPTNO)
     Values
       (108, 'Jode', TO_DATE('09/17/1996 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 21000, 30);
    Insert into EMPLOYEE
       (EMPNO, ENAME, HIREDATE, ORIG_SALARY, DEPTNO)
     Values
       (122, 'Alison', TO_DATE('09/17/1996 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 45000, 10);
    Insert into EMPLOYEE
       (EMPNO, ENAME, HIREDATE, ORIG_SALARY, DEPTNO)
     Values
       (123, 'James', TO_DATE('12/12/1978 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 23000, 20);
    Insert into EMPLOYEE
       (EMPNO, ENAME, HIREDATE, ORIG_SALARY, DEPTNO)
     Values
       (104, 'Celia', TO_DATE('12/12/1978 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 53000, 30);
    Insert into EMPLOYEE
       (EMPNO, ENAME, HIREDATE, ORIG_SALARY, DEPTNO)
     Values
       (105, 'Robert', TO_DATE('01/15/1984 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 31000, 10);
    Insert into EMPLOYEE
       (EMPNO, ENAME, HIREDATE, ORIG_SALARY, DEPTNO)
     Values
       (116, 'Linda', TO_DATE('01/15/1984 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 43000, 20);
    Insert into EMPLOYEE
       (EMPNO, ENAME, HIREDATE, ORIG_SALARY, DEPTNO)
     Values
       (117, 'David', TO_DATE('01/15/1984 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 78000, 30);
    COMMIT;
    
    SET DEFINE OFF;
    Insert into DEPARTMENTS
       (DEPTNO, DEPT_NAME)
     Values
       (10, 'Maths');
    Insert into DEPARTMENTS
       (DEPTNO, DEPT_NAME)
     Values
       (20, 'Physics');
    Insert into DEPARTMENTS
       (DEPTNO, DEPT_NAME)
     Values
       (30, 'Chemistry');
    COMMIT;
    I'm looking to find the sum of the salaries of all employees by each Department, but organized by date of hire. The output should be something like...
     HIREDATE     Maths    Physics  Chemistry
    
    9/17/1996      45000        0          21000
    1/15/1984      31000     43000   78000
    12/12/1978       0        23000   53000    
    Help with the query is very much appreciated.

    Published by: IamAby on Sep 18, 2012 11:44

    Published by: IamAby on Sep 18, 2012 11:46

    What:

    SQL> select e.hiredate
      2  ,      sum( case when d.dept_name = 'Maths' then orig_salary else 0 end ) maths
      3  ,      sum( case when d.dept_name = 'Physics' then orig_salary else 0 end ) physics
      4  ,      sum( case when d.dept_name = 'Chemistry' then orig_salary else 0 end ) chemistry
      5  from   employee e
      6  ,      departments d
      7  where  d.deptno = e.deptno
      8  group by e.hiredate
      9  order by e.hiredate desc;
    
    HIREDATE                 MATHS    PHYSICS  CHEMISTRY
    ------------------- ---------- ---------- ----------
    17-09-1996 00:00:00      45000          0      21000
    15-01-1984 00:00:00      31000      43000      78000
    12-12-1978 00:00:00          0      23000      53000
    

    Published by: Hoek on September 18, 2012 21:03 added "0 otherwise ' in case '.

  • link chart flash: passing paramerters

    I'm quite new to use 4 APEX and has a problem with passing parameters in a link to a page of flah 7 to another (page 6).

    One my first page I have 3 bars (result of my select on the table VBI_DOC_DETAIL_IN).
    Here, the user can choose a specific bar (vd. XORGANIZATION) per click, goes to a chart on page 6.
    P7_TEXT (element selection on the first page list) must be spent on page 6.
    And here, it's not going: How do I change the value of P7_TEXT to page 6?

    I try doing this, but does not work:

    Select ' f? p = & APP_ID.:6 :'|| : app_session |': P7_ORG, P7_TEXT :'|| VD. XORGANIZATION |', v (P7_TEXT)' link
    vd. Label XORGANIZATION
    the sum of value (vd.xxx)
    OF VBI_DOC_DETAIL_IN vd
    WHERE THE...

    Some help would be appreciated.

    Thanks in advance.

    Bernard

    Published by: user1335486 on August 3, 2011 06:29

    Published by: user1335486 on August 3, 2011 06:48

    Hello Bernard -.

    Try this

    select 'f?p=&APP_ID.:6:'||:app_session||'::::P7_ORG,P7_TEXT:'||vd.XORGANIZATION||','||:P7_TEXT link
    , vd.XORGANIZATION label
    , sum (vd.xxx) value
    FROM VBI_DOC_DETAIL_IN vd
    WHERE ...
    

    Austin

  • Value and % on a pie chart

    Experts,

    Pls tell me step by step how to show both value and % the overview of a pie chart.

    THX,
    Parag

    Try this:

    1. create a 'view' of the field % version. It will look something like this:

    '\n' || Cast (measure_field / sum (measure_field)) * 100 as varchar (100)) | » %'

    Notice I manually created the % calculation and the cast type varchar. Then I appended a newline character ('\n') at the beginning and one '%' at the end. The newline character prevents the horizontal size of the hover text becomes too large and therefore prevents the pie to have too small.

    2. include this new column in the 'axis of legend' of your pie chart.

    3. set the following options:
    ' Display the value as "= actual value
    'The label says' = Name and Value

    Overview, you should now see the value followed by a space and the label of the measure. Percent appears on the next line. It would look something like:

    Value MeasureLabel
    Percent

Maybe you are looking for

  • Persistent memory problems

    The two OS - x under macOS Sierra 10.12, all a few minutes my Mac slows down and now Activity Monitor shows at least one and sometimes up to three "Installer" process running - each consume at least 1.5 GB of memory.  Of course, these are the indicat

  • Is my product under warranty?

    Where on this site can check if a product is covered by warranty? I can´t find it!

  • reset the digital control by default

    I was wondering if you can reset the default digital control when a vi is on. I want to enter a batch number, when I press the button end lot I want control digital batch number to return to zero or blank.Thank youDavid

  • SR 3015 HP Pavilion dv6 8.1 Windows x 64

    Good afternoon. Installed a new windows 8.1, pilots have become almost everything automatically, except one. I found the missing driver with help DriverPack Solution 14 R407. But this problem is not resolved, I don't work mode "sleep" after having cl

  • Configuration required to download from camcorder

    I have connected my Canon GL1 to my Toshiba Satellite (Vista Ultimate 32-bit), FireWire 400 and the bus card adapter. The computer does not recognize the camcorder and the instructions in the manual of Canon are useless. What additional software and