Effacer les filtres
Effacer les filtres

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

2 vues (au cours des 30 derniers jours)
Tejas Rivonkar
Tejas Rivonkar le 10 Fév 2020
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 commentaire
youcef benchelli
youcef benchelli le 12 Mar 2020
problem dans le simulink
les commendes n'exist pas dans le matlab2012b
comme le photo
le programme n'excute pas

Connectez-vous pour commenter.

Réponses (0)

Produits


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by