Plotting in Matlab: w vs z in (-1,1) Domain

  • Thread starter Thread starter lee403
  • Start date Start date
  • Tags Tags
    Matlab Plotting
Click For Summary
The discussion focuses on plotting the relationship between variables w and z in MATLAB, defined by the equations w=cos(n*acos(z)) and z=cos(acos(w)/n) for n = 1,2,3,4 over the domain (-1,1). The initial approach involved using recursion, but the lack of initial conditions prompted a shift to creating an array for z that spans from -1 to 1. By substituting this array into the equation for w, the user plans to plot w against z. The intention is to overlay the two plots to visualize where both equations hold true simultaneously. The coding aspect is deemed straightforward, with the main challenge lying in the conceptual understanding of the relationships.
lee403
Messages
16
Reaction score
1

Homework Statement


(In Matlab) The variables w and z are related by w=cos(n*acos(z)) and z=cos(acos(w)/n) for n = 1,2,3,4 plot w vs z over domain (-1,1).

Homework Equations


w=cos(n*acos(z))
z=cos(acos(w)/n)

The Attempt at a Solution


First I tried to substitute z into w and thought since I have a function which calls itself I'd use a recursive function but I don't have the initial conditions. Then I thought that since the domain is (-1,1) and z would be plotted on that axis I could make z equal to an array with endpoints -1 and 1 and then plug that array in for w. Then I'd simply plot(z, w). The coding part is not difficult it's just the thought process behind it.
 
Physics news on Phys.org
Normally, if you are asked to plot w vs. z over (-1, 1), you let one variable (say z) range from -1 to 1, and plot the other (w) as your dependent variable. In this case, I would try both ways.
Overlaying the two plots should show where both relations can be true at the same time.
 

Similar threads

Replies
2
Views
1K
  • · Replies 10 ·
Replies
10
Views
2K
  • · Replies 6 ·
Replies
6
Views
5K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 3 ·
Replies
3
Views
3K
  • · Replies 3 ·
Replies
3
Views
4K
  • · Replies 3 ·
Replies
3
Views
4K
  • · Replies 1 ·
Replies
1
Views
2K
Replies
15
Views
3K
Replies
11
Views
2K