Alternative for linspace?
Show older comments
function [xvals, yvals]=A5fourier(L,nmax,numpoints)
%xvals=linspace(-L,L,numpoints);
for z=-0.1:0.001:0.1
xvals=z;
end
yvals=zeros(1,numpoints);
for i=1:numpoints
for j=1:2:nmax
yvals(i)=(4/pi)*(yvals(i)+(1/j)*sin(j*pi*xvals(i)/L));
j=j+1;
end
i=i+1;
end
L in this function is 0.1, and numpoints is 200. I've been challenged to use a loop rather than linspace to create the same 200 equally spaced points. My current solution ruins my yvals part of the function returning an error "Index exceeds the number of array elements". How can I remedy linspace while mainting the rest of my function?
Answers (2)
Why not just use the colon operator?
r = [-4 4];
n = 10;
x1 = linspace(r(1),r(2),n)
x2 = r(1):range(r)/(n-1):r(2)
This can definitely be simplified. The iterator in a for-loop doesn't need to be incremented.
yvals=zeros(1,numpoints);
for i=1:numpoints
for j=1:2:nmax
yvals(i)=(4/pi)*(yvals(i)+(1/j)*sin(j*pi*xvals(i)/L));
% j=j+1; % this doesn't do anything
end
% i=i+1; % this doesn't do anything
end
1 Comment
@Sarah Gomez, if your question involves, to use the for loops /other loops to create linearly spaced points, then this could be one option to do so, however, there are several redundant lines of code in your function whcih @DGM pointed out. Further, ihe simplest altrenative would be to use the colon : operator which also was mentioned by @DGM
[xvals yvals] = A5fourier(0.1,200,200)
linspace(-0.1,0.1,200)
function [xvals, yvals]=A5fourier(L,nmax,numpoints)
%xvals=linspace(-L,L,numpoints);
% alternative to linspace using for loops !!!
k = 1;
for z=-0.1:0.001:0.1
xvals(k)=z;
k = k+1;
end
yvals=zeros(1,numpoints);
for i=1:numpoints
for j=1:2:nmax
yvals(i)=(4/pi)*(yvals(i)+(1/j)*sin(j*pi*xvals(i)/L));
end
end
end
Pre
about 4 hours ago
Edited: Walter Roberson
19 minutes ago
The simplest alternative to linspace that outputs an identical array to what you are seeking...
example
step = 4/10 # for 10 elements between -2,2
x = []
for i in range(11):
x.append(round(-2 + i * step, 1)) # this removes any floating point error that occurs and rounds to 1 decimal place
more general solution
def my_linspace(start, end, size):
step = (end - start) / size - 1
array = []
for i in range(size):
array.append( round ( start + i * step, 1)) # here i have specified 1 degree of accuracy for neatness
return array
my_linspace(-2, 2, 10) # yields 10 evenly spaced values between -2 and 2 exactly like linspace
note that because I used 'round' the values outputted by the function will have exactly one degree of accuracy, whereas, outputs of linsapce are floats with undefined degrees of accuracy.
hope this helps someone :D
sorry about formatting, first post.
1 Comment
Walter Roberson
19 minutes ago
This solution appears to be written in python, not in MATLAB.
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!