フィルターのクリア

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

2 ビュー (過去 30 日間)
Tejas Rivonkar
Tejas Rivonkar 2020 年 2 月 10 日
コメント済み: youcef benchelli 2020 年 3 月 12 日
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 件のコメント
youcef benchelli
youcef benchelli 2020 年 3 月 12 日
problem dans le simulink
les commendes n'exist pas dans le matlab2012b
comme le photo
le programme n'excute pas

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeSwitches and Breakers についてさらに検索

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by