<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/163256</link>
    <title>MATLAB Central Newsreader - cross product and mat lab</title>
    <description>Feed for thread: cross product and mat lab</description>
    <language>en-us</language>
    <copyright>&amp;copy;1994-2008 by The MathWorks, Inc.</copyright>
    <webmaster>webmaster@mathworks.com</webmaster>
    <generator>MATLAB Central Newsreader</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <ttl>60</ttl>
    <image>
      <title>The MathWorks</title>
      <url>http://www.mathworks.com/images/membrane_icon.gif</url>
    </image>
    <item>
      <pubDate>Wed, 06 Feb 2008 13:07:10 -0500</pubDate>
      <title>cross product and mat lab</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/163256#413256</link>
      <author>Rufus Worrell</author>
      <description>Hey guys I was wondering I have 3 vectors: a, b, c.  now&lt;br&gt;
finding the cross product of them on paper is straight&lt;br&gt;
forward but how would mat lab do a x b .c and a.b x c if a =&lt;br&gt;
(1,2,3), b = (4,5,6) and c = (7,8,9)&lt;br&gt;
&lt;br&gt;
Thanks!&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Wed, 06 Feb 2008 13:09:19 -0500</pubDate>
      <title>Re: cross product and mat lab</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/163256#413257</link>
      <author>Rune Allnor</author>
      <description>On 6 Feb, 14:07, "Rufus Worrell" &amp;lt;hollywoodba...@AOL.com&amp;gt; wrote:&lt;br&gt;
&amp;gt; Hey guys I was wondering I have 3 vectors: a, b, c. =A0now&lt;br&gt;
&amp;gt; finding the cross product of them on paper is straight&lt;br&gt;
&amp;gt; forward but how would mat lab do a x b .c and a.b x c if a =3D&lt;br&gt;
&amp;gt; (1,2,3), b =3D (4,5,6) and c =3D (7,8,9)&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Thanks!&lt;br&gt;
&lt;br&gt;
help cross&lt;br&gt;
help dot&lt;br&gt;
&lt;br&gt;
Rune&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Wed, 06 Feb 2008 14:12:38 -0500</pubDate>
      <title>Re: cross product and mat lab</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/163256#413281</link>
      <author>Yumnam Kirani Singh</author>
      <description>see help on cross and dot! I hope, you will easily solve your problem, if you think a little deeper.&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Wed, 06 Feb 2008 15:20:04 -0500</pubDate>
      <title>Re: cross product and mat lab</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/163256#413312</link>
      <author>Thomas Pieper</author>
      <description>"Rufus Worrell" &amp;lt;hollywoodbatez@AOL.com&amp;gt; wrote in message &lt;br&gt;
&amp;lt;focbdu$hvp$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; Hey guys I was wondering I have 3 vectors: a, b, c.  now&lt;br&gt;
&amp;gt; finding the cross product of them on paper is straight&lt;br&gt;
&amp;gt; forward but how would mat lab do a x b .c and a.b x c if &lt;br&gt;
a =&lt;br&gt;
&amp;gt; (1,2,3), b = (4,5,6) and c = (7,8,9)&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Thanks!&lt;br&gt;
&lt;br&gt;
Hi,&lt;br&gt;
&lt;br&gt;
dot(cross(a,b),c)&lt;br&gt;
&lt;br&gt;
and&lt;br&gt;
&lt;br&gt;
dot(a,cross(b,c))&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
should solve your homework. The result lies between -0.001 &lt;br&gt;
and +0.001 :-)&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Cheers,&lt;br&gt;
&lt;br&gt;
Thomas&lt;br&gt;
&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Wed, 06 Feb 2008 16:17:02 -0500</pubDate>
      <title>Re: cross product and mat lab</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/163256#413321</link>
      <author>Roger Stafford</author>
      <description>"Rufus Worrell" &amp;lt;hollywoodbatez@AOL.com&amp;gt; wrote in message &amp;lt;focbdu$hvp&lt;br&gt;
$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; Hey guys I was wondering I have 3 vectors: a, b, c.  now&lt;br&gt;
&amp;gt; finding the cross product of them on paper is straight&lt;br&gt;
&amp;gt; forward but how would mat lab do a x b .c and a.b x c if a =&lt;br&gt;
&amp;gt; (1,2,3), b = (4,5,6) and c = (7,8,9)&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Thanks!&lt;br&gt;
----------&lt;br&gt;
&amp;nbsp;&amp;nbsp;The quantities&lt;br&gt;
&lt;br&gt;
&amp;nbsp;(a x b) . c&lt;br&gt;
&amp;nbsp;(b x c) . a&lt;br&gt;
&amp;nbsp;(c x a) . b&lt;br&gt;
&amp;nbsp;a . (b x c)&lt;br&gt;
&amp;nbsp;b . (c x a)&lt;br&gt;
&amp;nbsp;c . (a x b)&lt;br&gt;
&lt;br&gt;
all give the same value and they can all be evaluated as&lt;br&gt;
&lt;br&gt;
&amp;nbsp;det([a;b;c])&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;In your particular example the answer will be zero because a, b, and c are &lt;br&gt;
linearly dependent, which is to say that they are coplanar.  There is zero &lt;br&gt;
volume in the parallelepiped formed by them.&lt;br&gt;
&lt;br&gt;
Roger Stafford&lt;br&gt;
&lt;br&gt;
</description>
    </item>
  </channel>
</rss>
