How to create a higher resolution data?
    3 views (last 30 days)
  
       Show older comments
    
I am creating a series of data (delta), which i am giving input to a process to find out for which delta the process yields a minimum results. But the problem is my 'delta' are linear spaced data. and for better results i have to increase the number of delta which is making my code very slow. 
Is there any way i can generate better resolution of data for delta  so that i don't need to increase the steps and would get better result?
Here is my code for generating delta which i am later feeding in the for loop of a process.
delta = linspace(-delta_range,delta_range,23); %For better results i have to increase this number about 300                              
 shifting_steps = numel(delta);                %so the shifting steps increased 
delta_sequence = numel(delta);
    for  delta_loop = 1:1: delta_sequence      % forloop of the process to check which delta is giving minumum output
        .....
            ....
            process
    end
2 Comments
Answers (0)
See Also
Categories
				Find more on Shifting and Sorting 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!
