Editing Symbolic package

Jump to navigation Jump to search
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 50: Line 50:
<source lang="octave">
<source lang="octave">


## The following code will produce the same vector field plot as Figure 1.14 from Example 1.6 (pg. 39) from A Student's Guide to Maxwell's Equations by Dr. Daniel Fleisch.
##The following code will produce the same vector field plot as Figure 1.14 from Example 1.6 (pg. 39) from A Student's Guide to Maxwell's Equations by Dr. Daniel Fleisch.


## Make sure symbolic package is loaded and symbolic variables declared.
##Make sure symbolic package is loaded and symbolic variables declared.
pkg load symbolic
pkg load symbolic;
syms x y
syms x y


## Write a Vector Field Equation in terms of symbolic variables  
##Write a Vector Field Equation in terms of symbolic variables  
vectorfield = [sin(pi*y/2); -sin(pi*x/2)];
vector = [sin(pi .* y ./2 ); -sin(pi .* x ./2 )];


## Vector components are converted from symbolic into "anonymous functions" which allows them to be graphed.
##Vector components are converted from symoblic into anonymous form which allows them to be graphed
## The "'vars', [x y]" syntax ensures each component is a function of both 'x' & 'y'
##The '1' & '2', in vector(1) & vector(2) are indeces for the vector.
iComponent = function_handle (vectorfield(1), 'vars', [x y]);  
##The " 'vars', [x y]" syntax tells function_handle that each component is a function of both 'x' & 'y'
jComponent = function_handle (vectorfield(2), 'vars', [x y]);  
iComponent = function_handle (vector(1), 'vars', [x y]);  
jComponent = function_handle (vector(2), 'vars', [x y]);  


## Setup a 2D grid
##Setting the Grid up to graph all axes for all variables from -.5 to .5, with spacings .05 apart.
[X,Y] = meshgrid ([-0.5:0.05:0.5]);
[X,Y] = meshgrid([-.5:.05:.5]);


##Draw the Vector Field!
figure
figure
quiver (X, Y, iComponent (X, Y), jComponent (X,Y))
quiver(X,Y,iComponent(X,Y),jComponent(X,Y))


</source>
</source>
Please note that all contributions to Octave may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see Octave:Copyrights for details). Do not submit copyrighted work without permission!

To edit this page, please answer the question that appears below (more info):

Cancel Editing help (opens in new window)

Template used on this page: