How to create a higher resolution data?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (0)
Ver también
Categorías
Más información sobre Shifting and Sorting Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!