Skip to main content
10-Marble
April 22, 2020
Solved

Exploring Mathcad Programming (to do with units)

  • April 22, 2020
  • 4 replies
  • 2413 views

I need to get around the part of following programming where I need the variable to assign units (seconds in this example). It is not going through.

I request someone help me:  Thanks a lot

IMAGE-0002.png

Best answer by LucMeekes

You may consider using this to create your array:

LucMeekes_0-1587590681305.png

Result:

LucMeekes_1-1587590702674.png

Success!

Luc

4 replies

RWickrama10-MarbleAuthor
10-Marble
April 22, 2020
23-Emerald IV
April 22, 2020

The element of xx with index 2 never gets a value, so when i=3, an error occurs when trying to access that element.

 

Success!
Luc

23-Emerald IV
April 22, 2020

You cannot attach units to a variable that you use to index (point at) elements of an array.

If you want the array elements to have units, attach the unit to the elements, or attach the unit to the array at once in the return statement.


Success!
Luc

LucMeekes23-Emerald IVAnswer
23-Emerald IV
April 22, 2020

You may consider using this to create your array:

LucMeekes_0-1587590681305.png

Result:

LucMeekes_1-1587590702674.png

Success!

Luc

RWickrama10-MarbleAuthor
10-Marble
April 22, 2020

Thanks. It is a help to improve my skills. I also got round s follows.

RWickrama_0-1587599111789.png