display range variable as a table
display range variable as a table
(OP)
I am new to using mathcad 13. I can create range variables and display them as a matrix without issue, however if i set the Display Option to Automatic or to Table, i get a 2 x 2 table with 0 in the upper left cell but no other data. yet if i double click on the table and change the display option to matrix, all the data is there. Any suggestions?
Thanks
Thanks





RE: display range variable as a table
RE: display range variable as a table
Thanks
RE: display range variable as a table
Note, however, range variables are NOT vectors, so while Mathcad displays them as such, there are idiosyncrasies in certain functions and operations that may not work correctly with range variables in general.
TTFN
RE: display range variable as a table
test[0 := 1;20
test =
Shows a 2x2 table with 0 in the upper left for table display and the actual data for matrix display (if expand nested arrays is checked).
If this is the case, then you can display the data in a table by calling the appropriate cell, for example:
test[0 =
Peter
RE: display range variable as a table
x:=1..20
x=
the result, if view result is left in automatic is
0 .
x=
. .
where the dots represent blank values in a table. if i change format results to matrix,
x= a single column matrix listing 1 - 20 vertically.
thanks for your time, i appreciate the help
RE: display range variable as a table
I am using Mathcad Version 13.1
RE: display range variable as a table
http://www
There seems to be a bug because the MathCAD help says:
"Long vectors and range variables both display using output tables. However, range variables have the row and column labels turned off by default, while vectors have the row and column labels turned on by default."