lstsq/questions.rst
author Puneeth Chaganti <punchagan@fossee.in>
Mon, 11 Oct 2010 00:57:50 +0530
changeset 273 1639ef25a231
parent 237 6c203780bfbe
child 330 efb8ddf26aff
permissions -rw-r--r--
Slides for embellishing a plot LO.

Objective Questions
-------------------

 1. What does ones_like([1, 2, 3]) produce

   a. array([1, 1, 1])
   #. [1, 1, 1]
   #. [1.0, 1.0, 1.0]
   #. Error
   
 2. What does ones_like([1.2, 3, 4, 5]) produce

   a. [1.2, 3, 4, 5]
   #. array([1.0, 1.0, 1.0, 1.0])
   #. array([1, 1, 1, 1])
   #. array([1.2, 3, 4, 5])