Skip to main content
1-Visitor
January 17, 2020
Solved

Returning an extra zero when using a vector

  • January 17, 2020
  • 1 reply
  • 1605 views

Hi, 

I have a problem when using a defined vector in a function. As you can see below, the variable (i), goes from 1 to 3 with increments of 1.

When I use this variable in the function Dl(i) and Di(i) it returns one extra value in the answer, (0). (See where the arrow is pointing in the picture below)

Eilertsena_0-1579257740402.png

Eilertsena_0-1579269978211.png

 

This becomes a problem when I later on is going to use i.e. Di(i) in the equation shown below:

Eilertsena_1-1579257812837.png

What I want to do is to remove this "extra" 0 for all functions of (i)

Anyone that can help me out?

Best answer by -MFra-

Hi,

You have to set the origin to 1, write like this: ORIGIN: = 1. By default, in Mathcad, it is set to zero, therefore you find the first element of the vector equal to zero.

1 reply

-MFra-21-Topaz IIAnswer
21-Topaz II
January 17, 2020

Hi,

You have to set the origin to 1, write like this: ORIGIN: = 1. By default, in Mathcad, it is set to zero, therefore you find the first element of the vector equal to zero.

1-Visitor
January 17, 2020

Perfect! Thanks allot! 👍