Grid search for two data files and average of amplitude

1 visualización (últimos 30 días)
Hi !
I have one formula, f=v/4h in which v varies in the range of
v=200:02:1000;
h=4:0.2:12;
find f for all iterations. Now I have two file which contains f and amplitude in x and y coloumn respectively.
I want to find amplitude of almost exact f caluculated from formula and listed in the file (f calculated and listed should be same).
thanks

Respuesta aceptada

KALYAN ACHARJYA
KALYAN ACHARJYA el 20 de En. de 2020
v=200:02:1000;
h=4:0.02:12;
f=v./(4*h);
writetable(table(f'),'f_matlab.txt');
Check the data
  2 comentarios
ravindra gupta
ravindra gupta el 23 de En. de 2020
Dear Kalyan,
Thank you very much for finding some time to my problem.
we have calculated the f value from the above but we want to compare the calulated f with observed f, which is in the first column of attached file. If calculated f and observed f are same than we have to find the amplitude value which is tabulated in the second column in attached file.
please reply
KALYAN ACHARJYA
KALYAN ACHARJYA el 23 de En. de 2020
Try with isequal with individual data

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Statistics and Machine Learning Toolbox en Help Center y File Exchange.

Etiquetas

Aún no se han introducido etiquetas.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by