Plotting Series in Matlab: Code for Two Series with Cosine and Sine Functions

In summary, you want to construct a vector for n, the use that and your formula to compute a vector of each element in the series. The complication appears to be that you have two variables: n and t. So you'll probably have to construct vectors for the different frequencies as well as the coefficients ... with the aim of ending up with a 2D matrix whose columns are the elements of the sum (corresponding to each n) and the rows are the functions at discrete samples (corresponding to values of t). Summing the columns provides a row vector whose entries are f(t) sampled for discrete values of t. Then you can plot(t,f).
  • #1
Mphil1984
3
0
I am going to plot two series in Matlab. They are as following. please help me to write the appropriate code for them:

1-f(t)=(2/pi)+(4/pi)*Ʃ(1/(1-4*n^2))*cos(2*n*pi*t) -1≤t≤1 n=1 forN=200

2-f(t)=(4/0.25^2)*Ʃ(sin(0.25*n*pi)/(n*pi)^2)*sin(n*pi*t) -2≤t≤2 n=1,3,5 forN=200
 
Physics news on Phys.org
  • #2
Welcome to PF:
You want to construct a vector for n, the use that and your formula to compute a vector of each element in the series.

The complication appears to be that you have two variables: n and t.
So you'll probably have to construct vectors for the different frequencies as well as the coefficients ... with the aim of ending up with a 2D matrix whose columns are the elements of the sum (corresponding to each n) and the rows are the functions at discrete samples (corresponding to values of t).

Summing the columns provides a row vector whose entries are f(t) sampled for discrete values of t. Then you can plot(t,f).
 
  • #3
Could you please confirm the parentheses are correct in the two expressions? As written, I interpret the summation to be over n, ie {sum [1/(1-4*n^2)*cos(2*n*pi*t)] over n=1..200} but the expression 1 appears to be written as cos(2*n*pi*t)*{sum[1/(1-4*n^2)] over n=1..200} (et sim for 2).

Do you want f as a function of t and variable n or just as a function of t with the specified range for n?
 
  • #4
I ust figured everything after the sigma was included in the sum.

for 1.[tex]f(t)=\frac{2}{\pi} + \frac{4}{\pi} \sum_{n=1}^{200} \frac{\cos(2n\pi t)}{1-4n^2}[/tex]... and for 2.[tex]f(t)=64\sum_{n=1}^{200} \frac{\sin(\frac{n\pi}{4})}{(n\pi)^2}\sin(n\pi t)[/tex]

I still think the strategy I've outlined is the way to go here - we should avoid actually providing the code though.
 
  • #5
Simon Bridge said:
Welcome to PF:
You want to construct a vector for n, the use that and your formula to compute a vector of each element in the series.

The complication appears to be that you have two variables: n and t.
So you'll probably have to construct vectors for the different frequencies as well as the coefficients ... with the aim of ending up with a 2D matrix whose columns are the elements of the sum (corresponding to each n) and the rows are the functions at discrete samples (corresponding to values of t).

Summing the columns provides a row vector whose entries are f(t) sampled for discrete values of t. Then you can plot(t,f).

That would be a possible solution.What if we do not consider sum command?
 
  • #6
Simon Bridge said:
I ust figured everything after the sigma was included in the sum.

for 1.[tex]f(t)=\frac{2}{\pi} + \frac{4}{\pi} \sum_{n=1}^{200} \frac{\cos(2n\pi t)}{1-4n^2}[/tex]... and for 2.[tex]f(t)=64\sum_{n=1}^{200} \frac{\sin(\frac{n\pi}{4})}{(n\pi)^2}\sin(n\pi t)[/tex]

I still think the strategy I've outlined is the way to go here - we should avoid actually providing the code though.

In the second one n=1,3,5. everything else is right.
 
  • #7
Well, here's how it might be done in Mathcad.

I have gut feeling (a colon sensation, one might say) that there is sum way of doing a similar thing in Matlab. I have a forboding that loops may occur to somebody, but they should probably be avoided.

attachment.php?attachmentid=48583&stc=1&d=1340570867.jpg
 

Attachments

  • phys - 12 06 24 summation 01.jpg
    phys - 12 06 24 summation 01.jpg
    24.1 KB · Views: 681
  • phys - 12 06 24 summation 01.mcd
    10 KB · Views: 484
  • #8
Mphil1984 said:
That would be a possible solution.What if we do not consider sum command?
What exact steps you use are up to you - I have not suggested any exact code, just the mathematical structures you'd need to employ.

Technically you don't even need a 2D matrix to store all the terms, you could use a different 1D vector for each of the 200 terms instead. The approach outlines is a "brute force" method - there will be more elegant approaches.

Note: for the second one where n=1,3,5...200 (or is it n=1,3,5...399 for N=200 terms?)
Anyway = in MATLAB you need only do the step, so all the odd numbers are n=1:2:199; for all the odd numbers from 1 to 200. Writing it out in sigma notation is trickier than that... I need to sum over integer m from 0 to 99 and n=2m+1 and it looks like:[tex]f(t)=64\sum_{n=1}^{200} \sin\left ( \frac{(2n-1)\pi}{4}\right ) \frac{\sin((2n-1)\pi t)}{((2n-1)\pi)^2}[/tex]... for the first 200 odd numbers.
[One way matlab/octave is easier than pencil and paper :) ]

Note - the mathcad notes look like what I was suggesting only using jargon.
 
Last edited:

What is Matlab?

Matlab is a high-level programming language and interactive environment used by scientists and engineers for data analysis, visualization, and numerical computation.

How do I plot a series in Matlab?

To plot a series in Matlab, you can use the plot function. This function takes in the x and y values of the series and creates a line graph. You can also customize the plot with different colors, markers, and titles.

Can I plot multiple series in one graph?

Yes, you can plot multiple series in one graph by using the hold on command. This allows you to plot multiple lines on the same graph without erasing the previous ones.

How do I add cosine and sine functions to my series plot?

To add cosine and sine functions to your series plot, you can use the cos and sin functions in your code. These functions take in an input value and return the corresponding cosine or sine value, which can then be plotted on the graph.

Can I save my series plot as an image file?

Yes, you can save your series plot as an image file in Matlab. After creating your plot, you can use the saveas function to save it as a PNG, JPEG, or other image file format.

Similar threads

  • MATLAB, Maple, Mathematica, LaTeX
Replies
1
Views
1K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
4
Views
553
  • MATLAB, Maple, Mathematica, LaTeX
Replies
4
Views
2K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
10
Views
2K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
1
Views
2K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
1
Views
1K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
2
Views
887
  • MATLAB, Maple, Mathematica, LaTeX
Replies
1
Views
737
  • MATLAB, Maple, Mathematica, LaTeX
Replies
4
Views
1K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
2
Views
2K
Back
Top