Borrar filtros
Borrar filtros

How to generate a variable for step size of Powergui in the workspace?

2 visualizaciones (últimos 30 días)
clc
format short
%tout: a vector of number. The below removes numbers that are not multiple of 0.00005
tol = 1e-14; %abritrary tolerance below which numbers are considered equal
tout(abs(mod(tout, 0.00005)) > tol) = [];
tout = unique(tout);
NS1 = size(tout); % to find the number of samples
NS2=NS1(1,1);
FileName = input('Please enter a file name:', 's');
FN_cfg = [FileName,'.cfg'];
FN_dat = [FileName,'.dat'];
Data =[transpose((1:1:NS2)) tout M];
csvwrite(FN_dat,Data)
In the above code 0.00005 is the step size provided in the Powergui. But its user defined and can be changed whenever required.
if changed, the above code won't work and for that not to happen, i want to take the value directly from the Powergui.
Now the problem is there is no variable available for the step size in workspace to use above in place of 0.00005.
can anyone help me please?
  1 comentario
youcef benchelli
youcef benchelli el 12 de Mzo. de 2020
problem dans le simulink
les commendes n'exist pas dans le matlab2012b
comme le photo
le programme n'excute pas

Iniciar sesión para comentar.

Respuestas (0)

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by