本文整理汇总了C++中KstMatrixPtr::setEditable方法的典型用法代码示例。如果您正苦于以下问题:C++ KstMatrixPtr::setEditable方法的具体用法?C++ KstMatrixPtr::setEditable怎么用?C++ KstMatrixPtr::setEditable使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类KstMatrixPtr
的用法示例。
在下文中一共展示了KstMatrixPtr::setEditable方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: doTests
void doTests() {
bool ok = true;
//basic default constructor values
KstMatrixPtr m1 = new KstMatrix(KstObjectTag(QString::null));
doTest(m1->tagName().startsWith("Anonymous"));
doTest(m1->sampleCount() == 0);
doTest(m1->minValue() == 0);
doTest(m1->maxValue() == 0);
doTest(m1->value(0, 0, &ok) == 0);
doTest(!ok);
doTest(m1->value(10, 10, &ok) == 0); //should be outside the boundaries.
doTest(!ok);
doTest(m1->sampleCount() == 0);
doTest(m1->meanValue() != m1->meanValue()); // NaN
//basic symetrical matrix
KstMatrixPtr m2 = new KstMatrix(KstObjectTag("Symetrical"), 0L, 3, 3);
doTest(m2->tagName() == "Symetrical");
doTest(m2->resize(3, 3, true));
doTest(!m2->editable());
m2->setEditable(true);
doTest(m2->editable());
doTest(m2->xNumSteps() == 3);
doTest(m2->yNumSteps() == 3);
doTest(m2->minX() == 0);
doTest(m2->minY() == 0);
doTest(m2->xStepSize() == 1);
doTest(m2->yStepSize() == 1);
doTest(m2->sampleCount() == 9);
doTest(m2->setValueRaw(1, 1, 5));
ok = true;
doTest(m2->value(1, 1, &ok) == 5);
doTest(ok);
m2->blank();
m2->change(m2->tag(), 3, 3, 0, 0, 0, 0); //should not be legal
doTest(m2->xNumSteps() == 3);
doTest(m2->yNumSteps() == 3);
doTest(m2->minX() == 0);
doTest(m2->minY() == 0);
doTest(m2->xStepSize() == 0);
doTest(m2->yStepSize() == 0);
doTest(m2->sampleCount() == 9);
doTest(!m2->setValue(0, 0, 1.0));
ok = true;
doTest(m2->value(0, 0, &ok) == 0.0);
doTest(!ok);
doTest(!m2->setValue(1, 1, 5.0));
doTest(m2->value(1, 1) != 5.0);
doTest(m2->setValueRaw(2, 2, 6.0)); //fails
KstMatrixPtr um1 = new KstMatrix(KstObjectTag("Unity"), 0L, 3, 3, 0, 0, 1, 1);
um1->setEditable(true);
um1->zero();
doTest(!um1->setValue(0, 0, 1.0));
doTest(!um1->setValue(1, 1, 1.0));
doTest(!um1->setValue(2, 2, 1.0));
doTest(um1->resize(3, 3, false));
um1->zero();
doTest(um1->setValue(0, 0, 1.0));
doTest(um1->setValue(1, 1, 1.0));
doTest(um1->setValue(2, 2, 1.0));
// calling resize on a matrix does not retain the correct values
// for matrix entries. i.e. taking a 3x3 matrix and resizing
// to a 2x2 matrix does not mean matrix[0][0], matrix[0][1],
// matrix[1][0], matrix[1][1] are the same before and after the resize.
// The resulting values should properly be undefined...
doTest(um1->resize(2, 2, true));
doTest(um1->sampleCount() == 4);
doTest(um1->value(0, 0, &ok) == 1.0);
doTest(ok);
doTest(um1->value(0, 1, &ok) == 0);
doTest(ok);
doTest(um1->value(0, 2, &ok) == 0);
doTest(!ok);
doTest(um1->value(1, 0, &ok) == 0);
doTest(ok);
doTest(um1->value(1, 1, &ok) == 0);
doTest(ok);
doTest(um1->value(1, 2, &ok) == 0);
doTest(!ok);
doTest(um1->resize(4, 4, false));
doTest(um1->value(0, 0, &ok) == 1.0);
doTest(ok);
doTest(um1->value(0, 1, &ok) == 0);
doTest(ok);
doTest(um1->value(0, 2, &ok) == 0);
//.........这里部分代码省略.........