Hi,
have a look at this plot, i'm using standard worksheet (in classic this problem doesn't exist).
plot(sin(x),x=-5..5,tickmarks=[default,20]);
Instead of -for example- 0,5 i want decimal points 0.5
Playing with the tickmarks option would do the trick, but a "global switch" would be better.
What to do ?
Thomas
Hello everybody,
I was wondering, is there a way to call procedures from a different
worksheet?
I am writing a big procedure which calls many smaller ones and that would
be really clearer if I keep them in a different worksheet..
Thanks a lot in advance..
Hi, I have a polynomial expression like this:
2*a^32*b^3 + 3*c^2*a^3 + 4*a^5*c^2
I would like to apply rules like these ones:
a = a^x and b = b^y, ∀ x,y ∈ N*
It should result:
2*a*b + 7*c^2*a
I would do this manually, but I intend to use this to really big expressions and it would be quite boring. Any ideas?
Thanks in advance and sorry the english,
Pedro Paganela - Engineering Student
Dear experts,
I want to plot a matrix with B[n,m] and n:=1..10 and m:=1..10
The problem is that the plots achses are labled with n and m. I want to lable the achses with N:=0.25 to 2.5 in steps of 2.5.... How can I do that?
Hello everybody,
I am a bit stuck here because I have the problem above, any help
would be really appreciated..
E1:={{0,2},{0,7},{0,a},{0,b},{1,3},{1,8},{1,9},{1,a},{1,e},{2,3},{2,a},{2,d},{2,e},{3,4},{3,6},{4,8},{5,7},{5,a}, {5,e},{6,c},{6,e},{7,8},{7,a},{7,e},{8,b},{9,a},{a,c},{c,d},{c,e},{e,f}};
for e in E1 do
e;
end do;
{0, 2}
{0, 7}
{0, a}
{0, b}
{1, 3}
NOT covered
in Chapter 7 of the textbook (either in other literature, or on the
Internet). Give a brief description of your example, and illustrate its
properties with a Maple worksheet
How Do i Approach to this question
Find an example of a chaotic attractor in 3D which is
Hello everybody,
I have a question, any help would be really appreciated.
Let me illustrate my problem with a small example. Say I want to define 1000 variables like this:
x_1:=1; x_2:=2; x_3:=3; .... x_1000:=1000;
That would be very tedious to be done by habd so I would like to use a 'for'
to do that.. Is that possible? The code below does not work:
for i from 1 to 1000 do
x_i := i ;
end do;
Any ideas?
Thanks a lot in advance..
Hi all!
So I have an equation like so:

I have to plot a graph of the resistance against variable frequency of up to 1Ghz.
So I am plotting for frequencies 1Hz, 1x10^2, ... 1x10^9
Question is, how do I use Maple to input a set of frequencies into f of the above equation, giving out the resistance, and then plot a graph.
I am new to maple.
Thanks in advanced.
Regards,
daniel
Dear experts,
I wrote the follwing loop. Unfortunately it is very slow. The procedure Powell takes only 5 seconds in a single case, but in this coonglomerate of loops it takes much longer. Do you see a way "to make it faster"?
with(LinearAlgebra);
S1 := .1;
S2 := .1;
for n to 10 do for m to 10 do
S1:= S1+.2;
for m to 10 do
S2 := S2i+.2;
w := proc (Q1, Q2) -->evalf function....
if (Zwischenspeicher[1] >= 100, Zwischenspeicher[2] >= 100) then B[n, m] := 1 end if;
if (Zwischenspeicher[1] >= 100, Zwischenspeicher[2]
Hi
How do I generate Pascal's Triangle in Maple
I am studying Computer Science. I know how to generate Pascal's Triangle In Java.
I am still learning Maple.
Here is my Java Code
import java.applet.*;
import java.awt.*;
import java.io.*;
public class PascalTriangle extends Applet {
TextField ROW;
TextArea DISPLAY;
public static void main(String args[]) {
PascalTriangle pt = new PascalTriangle();
Hi everyone!
I'm solving an equations here that returns the hypergeometric function: 2_F_1(a,b;c;z). However, I know that I can respresent this as (1-z)^(-a) 2_F_1(a, c-b;,c;z/(1-z)), for example. How can I tell Maple to switch form one form to the other, or better yet, ensure that the soultions it outputs are of the second form in the first place? I have explored the hypergeom and convert help pages but have had no luck. Thanks very much!
Taylor
I was a little bit unclear so I try to ask again:
I have a procedure that is called:
Optimization:=proc(f,Xmin0,Step,epsilon,Shorten,Nmax) global Powell_Search_Path;
local i,j,x0,sloc,s_c,floc,s,h,criterion,good_step,index_STEP,step,Short,eps,
STEP,x_step,F,x,criterion_exit,r,x_s,delta,d,m,f1,f2,f3,len0,Xmin,
Xmin should be the variable for the optimized value. I want that the optimization stops when the optimized value is becoming negative (Xmin
How can I see the values of B[n,m] when is from 1 to 100 and m also?