help /
 /   Slash or right matrix divide.
    A/B is the matrix division of B into A, which is roughly the
    same as A*INV(B) , except it is computed in a different way.
    More precisely, A/B = (B'\A')'. See MLDIVIDE for details.
 
    C = <strong>mrdivide</strong>(A,B) is called for the syntax 'A / B' when A or B is an
    object.
 
    See also <a href="matlab:help mldivide">mldivide</a>, <a href="matlab:help rdivide">rdivide</a>, <a href="matlab:help ldivide">ldivide</a>.

    Overloaded methods:
       <a href="matlab:help codistributed/mrdivide">codistributed/mrdivide</a>
       <a href="matlab:help gpuArray/mrdivide">gpuArray/mrdivide</a>
       <a href="matlab:help LagOp/mrdivide">LagOp/mrdivide</a>
       <a href="matlab:help fints/mrdivide">fints/mrdivide</a>
       <a href="matlab:help StaticModel/mrdivide">StaticModel/mrdivide</a>
       <a href="matlab:help DynamicSystem/mrdivide">DynamicSystem/mrdivide</a>
       <a href="matlab:help timeseries/mrdivide">timeseries/mrdivide</a>
       <a href="matlab:help laurpoly/mrdivide">laurpoly/mrdivide</a>

    Reference page in Help browser
       <a href="matlab:doc mrdivide">doc mrdivide</a>

clc
uiopen('C:\Users\TEMP\AppData\Local\Temp\Rar$DIa0.832\erg1.m',1)
for k = 0:1:10
clc
clear
for k = 1:1:10
end
end
for k =0:1:10
end
x = 1./[1:10]

x =

  Columns 1 through 3

    1.0000    0.5000    0.3333

  Columns 4 through 6

    0.2500    0.2000    0.1667

  Columns 7 through 9

    0.1429    0.1250    0.1111

  Column 10

    0.1000

y(1)=0

y =

     0

y(2)=1;
for k= 1:1:8
y(k+2)=y(k)+ y(k+1)
end

y =

     0     1     1


y =

     0     1     1     2


y =

     0     1     1     2     3


y =

     0     1     1     2     3     5


y =

  Columns 1 through 6

     0     1     1     2     3     5

  Column 7

     8


y =

  Columns 1 through 6

     0     1     1     2     3     5

  Columns 7 through 8

     8    13


y =

  Columns 1 through 6

     0     1     1     2     3     5

  Columns 7 through 9

     8    13    21


y =

  Columns 1 through 6

     0     1     1     2     3     5

  Columns 7 through 10

     8    13    21    34

x*y
{Error using <a href="matlab:helpUtils.errorDocCallback('mtimes')" style="font-weight:bold"> * </a>
Inner matrix dimensions must agree.
} 
y'

ans =

     0
     1
     1
     2
     3
     5
     8
    13
    21
    34

x*y'

ans =

   11.2679

diary off
