Search results

Jump to navigation Jump to search
  • Context("Matrix"); Use <code>Context("Matrix");</code>.
    4 KB (606 words) - 06:23, 18 July 2023
  • my $context = Context()->copy; $context->flags->set(no_parameters=>0);
    7 KB (1,066 words) - 16:41, 20 June 2023
  • Context("Numeric")->variables->add(y=>"Real",z=>"Real"); Context()->texStrings;
    4 KB (549 words) - 05:48, 18 July 2023
  • Context("Numeric"); Context("LimitedPolynomial-Strict");
    4 KB (589 words) - 05:47, 18 July 2023
  • Context("Numeric")->variables->add(y=>"Real"); We have to tell the context that we are allowing the assignment of a variable to a formula.
    4 KB (588 words) - 06:11, 18 July 2023
  • Context("Numeric"); ...[http://webwork.maa.org/pod/pg/macros/parserPopUp.html parserPopUp.pl] The context is not really necessary, but multiple choice questions are often follow-up
    4 KB (599 words) - 07:18, 17 July 2023
  • Context("Numeric"); Context()->texStrings;
    2 KB (356 words) - 16:19, 14 May 2010
  • Context("Numeric"); Context()->texStrings;
    4 KB (535 words) - 06:05, 18 July 2023
  • Context("Numeric"); Context()->texStrings;
    4 KB (619 words) - 07:41, 17 July 2023
  • ...s for display. By default, it uses a special context called the [[Typeset Context]] that includes many more functions and operators than most other contexts. If you want to use a different context, however, you can select one by putting its name in braces after the closin
    4 KB (716 words) - 11:42, 28 October 2021
  • Context("Numeric")->variables->are(x=&gt;"Real",y=&gt;"Real"); Context()->texStrings;
    4 KB (557 words) - 05:42, 18 July 2023
  • Context("Numeric"); Context()->variables->are(x=>"Real",y=>"Real",u=>"Real");
    3 KB (475 words) - 09:11, 28 June 2023
  • Context("Numeric"); Context()->variables->are(x=>"Real",y=>"Real",z=>"Real",u=>"Real",v=>"Real");
    4 KB (595 words) - 07:49, 18 July 2023
  • <h2>Adding Functions to the Context: PG Code Snippet</h2> ...is code snippet shows the essential PG code to add a named function to the Context in a problem. Note that these are <b>insertions</b>, not a complete PG f
    6 KB (938 words) - 16:42, 20 June 2023
  • Context("Numeric")->variables->add(y=>"Real"); Context()->constants->add(k=>0.01);
    3 KB (394 words) - 18:06, 7 April 2021
  • Context("Numeric"); Context()->variables->are(
    5 KB (746 words) - 06:15, 18 July 2023
  • Context("Numeric"); Context()->variables->are(
    5 KB (700 words) - 06:17, 18 July 2023
  • Context()-&gt;strings-&gt;add(none=&gt;{}); # Context()-&gt;strings-&gt;add(none=&gt;{caseSensitive=&gt;1});
    4 KB (656 words) - 16:49, 20 June 2023
  • Context("Vector")->variables->are(t=>"Real"); Context()->texStrings;
    4 KB (608 words) - 07:52, 18 July 2023
  • ...rserFunction.pl</code>. There is a more basic way to add functions to the context, which is explained in example 2 at Context("Numeric")->variables->are(n=>"Real");
    4 KB (573 words) - 14:48, 16 July 2023
  • Context("Vector2D"); #Context("Vector"); # for 3D vectors
    6 KB (755 words) - 07:51, 18 July 2023
  • Context("Numeric"); Context()->texStrings;
    3 KB (407 words) - 17:55, 7 April 2021
  • Context("Numeric"); Context()->variables->are(x=>"Real",y=>"Real",z=>"Real",t=>"Real");
    5 KB (655 words) - 07:48, 18 July 2023
  • Context( "Point" ); We don't use <code>Context("Vector");</code> and <code>norm( $point[0] - $point[1] )</code> here
    4 KB (631 words) - 09:42, 28 June 2023
  • my $value = $self->context->flag("setSqrt"); Context("Numeric")->variables->are(
    4 KB (562 words) - 17:56, 7 April 2021
  • Context("Numeric"); Context()->functions->disable("All");
    4 KB (551 words) - 09:06, 28 June 2023
  • * The <tt>parserImplicitPlane.pl</tt> macro includes the context and the <tt>ImplicitPlane</tt> function to parse and create implicit planes Context('ImplicitPlane');
    4 KB (633 words) - 06:30, 18 July 2023
  • Context("Numeric"); Context()->variables->are(x=>"Real",y=>"Real",r=>"Real",t=>"Real");
    5 KB (662 words) - 06:33, 18 July 2023
  • Context("Vector")->variables->are(x=>'Real',y=>'Real'); Context()->texStrings;
    3 KB (441 words) - 16:53, 20 June 2023
  • Context('ImplicitEquation'); Context()->{error}{msg}{
    4 KB (587 words) - 05:43, 18 July 2023
  • Context("Numeric")->variables->are(t=>"Real"); Context()->functions->remove("sin");
    5 KB (792 words) - 07:56, 18 July 2023
  • ...ntext. It also shows how to add a named function <code>u(x)</code> to the context that has a reliable answer checker and can stand in for the Heaviside step We load <code>parserFunction.pl</code> to make adding a named function to the context easier.
    9 KB (1,443 words) - 06:27, 18 July 2023
  • ...the array when used in scalar context.) The most common usage is the array context.</blockquote>
    2 KB (311 words) - 18:45, 18 November 2009
  • ...enter, or, alternately, it is possible to specifically indicate within the context what functions or operations are not allowed. In the following, we first c ...me</i>.pl</code>, where <code><i>ContextName</i></code> is the name of the context used in the problem set-up section of the problem.
    10 KB (1,530 words) - 09:23, 28 June 2023
  • Context("Numeric"); Context()->variables->are(x=>"Real",y=>"Real",z=>"Real",t=>"Real");
    4 KB (524 words) - 11:03, 29 June 2023
  • ...athObjects we can control tolerance by setting a "global" tolerance in the Context, as shown in the example below, or by specifying the tolerance that is used Context("Numeric");
    6 KB (779 words) - 16:40, 20 June 2023
  • Context("Numeric"); Context()->texStrings;
    5 KB (783 words) - 16:54, 20 June 2023
  • Context("Numeric")->variables->are(t=>"Real"); Context("Numeric")->variables->are(t=>"Real");
    5 KB (717 words) - 06:01, 18 July 2023
  • <label for="context">Context</label> <select id="context" name="context">
    945 bytes (111 words) - 15:06, 21 June 2021
  • Context("Numeric"); Context()->variables->are(x=>"Real",y=>"Real",r=>"Real",s=>"Real",t=>"Real");
    4 KB (531 words) - 11:00, 29 June 2023
  • Context("Numeric"); Context()->variables->are(x=>"Real",y=>"Real",r=>"Real",s=>"Real",t=>"Real");
    5 KB (708 words) - 06:32, 18 July 2023
  • Context('Matrix'); Context()->texStrings;
    6 KB (884 words) - 06:24, 18 July 2023
  • Context('Matrix'); Context()->texStrings;
    4 KB (510 words) - 06:26, 18 July 2023
  • ...to create Points in <math>{\bf C}^n</math>, though there is no pre-defined Context that makes this easy to do. Context("Point");
    4 KB (584 words) - 17:56, 7 April 2021
  • Context("Numeric"); Context()->variables->are(x=>"Real",y=>"Real",r=>"Real",t=>"Real");
    4 KB (528 words) - 10:58, 29 June 2023
  • Context("Numeric"); Context()->texStrings;
    3 KB (314 words) - 21:02, 1 August 2022
  • ...ext and the LimitedPowers context for factoring, and the LimitedPolynomial context for expanding.</li> ...ptive parameters and a MultiAnswer for factoring and the LimitedPolynomial context for expanding.</li>
    11 KB (1,537 words) - 09:43, 28 June 2023
  • Context("ImplicitEquation"); Context()-&gt;variables-&gt;set(
    5 KB (799 words) - 09:30, 28 June 2023
  • Context("Vector"); Context()->operators->undefine(".","><");
    6 KB (820 words) - 06:28, 18 July 2023
  • Context('Numeric'); Context('PolynomialFactors-Strict');
    4 KB (583 words) - 05:48, 18 July 2023

View (previous 50 | next 50) (20 | 50 | 100 | 250 | 500)