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?