Stop a Execute Callback Function - MATLAB - function
i check every two seconds if a EXE is running. If its not running then check in a .mat file a value. If value is 1 then the program should stop(t). At moment the stop(t) isnt working or if i leave it out then i have infinite loop.
t=timer;
t.period=2;
t.TasksToExecute=inf;
t.ExecutionMode='fixedRate';
t.TimerFcn=#check_exe;
start(t)
function check_exe(mTimer,~)
%check if EXE is already running
[~,b]=system('tasklist');
IsRunning=contains(b,'Digitale_Ablegeschablone');
if IsRunning(1)
fprintf('Digitale_Ablegeschablone ist bereits geöffnet!\n');
else
load('Parameter.mat', 'Speicherstatus')
load('Parameter.mat', 'Block_beendet')
load('Parameter.mat', 'Save_Session')
if Save_Session==1
fprintf('Sitzung ist gespeichert. Digitale Ablegeschablone wird nicht geöffnet\n');
stop(t) %stop
elseif Block_beendet==1
fprintf('Sitzung ist beendet. Digitale Ablegeschablone wird nicht geöffnet\n');
stop(t) %stop
else
%start again (if its crashed)
system('C:\Users\christian\Desktop\TEST\EXE\Digitale_Ablegeschablone.exe &')
end
end
end
You are calling stop(t) inside a function which doesn't "know" what t is - it is not defined anywhere in the scope of that function, hence the error message you get
Unrecognized function or variable 't'.
The first input to the callback function check_exe, which you're not using at all currently, is actually the timer object. However, you've called it mTimer instead of t. You need to either use stop(mTimer) or change the input name to t. A simpler complete example which just checks if some test file exists can be used to test this:
function check(t,~)
if exist( 'C:\Users\wfeavyou\Desktop\test.txt', 'file' )
fprintf( 'Stopping at time=%dsec!\n', (t.TasksExecuted-1)*t.Period );
stop(t) %stop
else
fprintf( 'Check failed, continuing at time=%dsec!\n', (t.TasksExecuted-1)*t.Period );
end
end
This produces the following output where I manually made the test.txt file after 6 seconds. I can't test it because your example isn't stand-alone, but it should work in the same way just by changing the first input name to t
Check failed, continuing at time=0sec!
Check failed, continuing at time=2sec!
Check failed, continuing at time=4sec!
Check failed, continuing at time=6sec!
Stopping at time=8sec!
Related
Moving file E93: More than one match
The following function works (it opens and moves the desired file to a new or preexisting directory). But, I receive an error message concerning line 11 of the function execute 'bwipeout '.expand(s:oldFileName). The error I receive is E93: More than one match for <the old file name>. I don't understand how this is possible because it has already successfully moved the file to the s:newFileName and the old file has been deleted. The new file's buffer doesn't have the same name as the old buffer. So, how would there be more than one match for the name of the old buffer? command! -nargs=0 -bar MoveFile call s:functionMoveFile() function s:functionMoveFile() abort call dirvish#open("edit", 0) let s:oldFileName = expand("%:p") call inputsave() let s:newFileName = input("Move file here: ",expand(s:oldFileName),"file") call inputrestore() if s:newFileName != '' && s:newFileName != s:oldFileName execute 'sav '.fnameescape(s:newFileName) let s:newFileDirectory = expand("%:p:h") call delete(s:oldFileName) execute 'Dirvish '.expand(s:newFileDirectory) execute 'bwipeout '.expand(s:oldFileName) endif endfunction I can prepend silent! to line 11 to avoid the error message. But, that isn't a proper fix. I don't know what else I should try because I am not asking vim to wipeout the new buffer and the old file's name doesn't match the new one. The command works as desired, but I would like to know what is incorrect about what I'm doing. Thank you for your help.
Does flatMapMerge cache flows?
I wonder how flatMapMerge works in this code: fun requestFlow(i: Int): Flow<String> = flow { emit("$i: First") delay(500) // wait 500 ms emit("$i: Second") } fun main() = runBlocking<Unit> { val startTime = System.currentTimeMillis() // remember the start time (1..3).asFlow().onEach { delay(100) } // a number every 100 ms .flatMapMerge { requestFlow(it) } .collect { value -> // collect and print println("$value at ${System.currentTimeMillis() - startTime} ms from start") } } 1: First at 136 ms from start 2: First at 231 ms from start 3: First at 333 ms from start 1: Second at 639 ms from start 2: Second at 732 ms from start 3: Second at 833 ms from start After requestFlow sleeps for 500 ms, it continues with emit("$i: **Second**"). Looking at the output, I am confused. My questions are Has flatMapMerge invoked asFlow on (1..3) again. Or Does it cache the flow of 1..3 somewhere for later use because requestFlow has told it, ' I'm not done yet'
The entire sequence is like this: 1 is emitted from original flow and passed to requestFlow which creates a new flow builder which prints "1: First at..." and then suspends for 500ms. 2 is emitted from original flow and passed to requestFlow which creates a new flow builder which prints "2: First at..." and then suspends for 500ms. (here we have two suspended functions in memory). 3 is emitted from original flow and passed to requestFlow which creates a new flow builder which prints "3: First at..." and then suspends for 500ms. (here we have three suspended functions in memory). After 500ms from 1st emission, the first suspended function resumes and prints "1: Second at ..." After 100ms, the second function resumes and prints "2: Second at ..." After another 100ms, the last suspended function resumes and prints "3: Second at ..." flatternMapMerge just applies the transformation you provide and returns a Flow<String>. Note that this is not a suspend function and so returns immediately. Answering your two questions, No, the asFlow function is not invoked again. It's not caching the flow, just suspending the functions for 500ms, doing other stuff till then, and resuming from where it left off after the delay is over.
Rerun the program after it ends automatically in octave
Using OCTAVE only... How can I rerun the code automatically after it ends. Like I want to make a program in which if the input is incorrect value it will end the program and rerun again. I tried that by writting there a file name and it works but this will only work until I change my file name.
You can wrap your main script in a wrapper script which performs the loop. % In main.m disp( 'Hello from main' ); Question = "Do you want to rerun? "; Response = input( Question, 's'); % in wrapper.m Response = 'yes'; while strcmp( Response, 'yes' ) main end
Error : 'x' undefined
I got a problem with running Octave function (ODE), I've tried already present solutions for this problem but nothing is working. I've also tried by saving my filename as egzamin.m but it too not worked. Code from octave : function dx=egzamin(x,t) dx=zeros(4,1); b=0; g=9.81; x1=x(1); y1=x(2); Vx=x(3); Vy=x(4); dx(1)=Vx; dx(2)=Vy; dx(3)=-b*Vx*sqrt(Vx.^2+Vy.^2); dx(4)=-b*Vy*sqrt(Vx.^2+Vy.^2)-g; endfunction N=mod(291813,100); x1=0; y1=0; Vx=20+N; Vy=20+N; t=0:0.01:500; sol=lsode("egzamin",[x1,y1,Vx,Vy],t); plot(sol(:,1),sol(:,2)) The error is : error: 'x' undefined near line 5 column 4 error: called from egzamin at line 5 column 3
Since the file starts with function, it is not a script file, as explained in the doc: Unlike a function file, a script file must not begin with the keyword function Add any statement (even dummy like 1;) before the function line to get a script file. # dummy statement to get a script file instead of a function file 1; function dx=egzamin(x,t) g = 9.81; Vx = x(3); Vy = x(4); dx = [Vx, Vy, 0, -g]; endfunction N=mod(291813,100); x1=0; y1=0; Vx=20+N; Vy=20+N; t=0:0.01:500; sol=lsode("egzamin",[x1,y1,Vx,Vy],t); plot(sol(:,1),sol(:,2)) A very clear explanation of what's going on is given here.
You need to save the function (thus from function to endfunction and naught else) as egzamin.m, and then execute the rest of the code in a script or at the command line. Alternatively, provided Octave does that the same as what MATLAB does nowadays, first put your script (N=(..) to plot()) and then the function. This is necessary since you are defining your function first, so it doesn't have any inputs yet, as you don't define them until later. The function needs to have its inputs defined before it executes, hence you need to save your function separately. You can of course save your "script" bit, thus everything which is currently below your function declaration, as a function as well, simply don't give it in- and outputs, or, set all the input parameters here as well. (Which I wouldn't do as it's the same as your egzamin then.) e.g. function []=MyFunc() N=mod(291813,100); x1=0; y1=0; Vx=20+N; Vy=20+N; t=0:0.01:500; sol=lsode("egzamin",[x1,y1,Vx,Vy],t); plot(sol(:,1),sol(:,2)) endfunction
Scilab - calling another GUI within a GUI. Functions not working
I'm quite new to scilab, I have created two GUIs (see example below), with script 2 being called from script 1. However the function in script 2 don't seem to work. Can anyone help? Script 1 '////////// f=figure('figure_position',[0,0],'figure_size',[1250,650]); ////////// delmenu(f.figure_id,gettext('File')) delmenu(f.figure_id,gettext('?')) delmenu(f.figure_id,gettext('Tools')) toolbar(f.figure_id,'off') handles.dummy = 0 ; handles.exam=uicontrol(f,'unit','normalized','BackgroundColor', [0.5,1,1],'Enable','on','FontAngle','normal','FontName','helvetica','FontSize',[14],'FontUnits','points','FontWeight','bold','ForegroundColor',[0,0.5,0],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.5,0.5,0.1,0.05],'Relief','flat','SliderStep',[0.01,0.1],'String','exam','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','obj102','Callback','exam_callback(handles)') function exam_callback(handles) close(f); clear exec('costs0-1.sce',-1) ; endfunction` Script 2 ////////// Defining the figure (size, name etc)///////////////////////////// f=figure('figure_position',[0,0],'figure_size',[1250,650],'auto_resize','on','background',[8]); ////////// delmenu(f.figure_id,gettext('File')) delmenu(f.figure_id,gettext('?')) delmenu(f.figure_id,gettext('Tools')) toolbar(f.figure_id,'off') //Cabinet - TEXT handles.obj17=uicontrol(f,'unit','normalized','BackgroundColor',[1,1,1],'Enable','on','FontAngle','normal','FontName','helvetica','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[0,0,0],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.15,0.93,0.1,0.05],'Relief','flat','SliderStep',[0.01,0.1],'String','Cabinet','Style','text','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','obj17','Callback','') // Cabinet - POP UP MENU handles.service=uicontrol(f,'unit','normalized','BackgroundColor',[0.8,0.8,0.8],'Enable','on','FontAngle','normal','FontName','helvetica','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[0,0.5,0],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.25,0.93,0.15,0.05],'Relief','flat','SliderStep',[0.01,0.1],'String','1|2','Style','popupmenu','Value',[1],'VerticalAlignment','middle','Visible','on','Tag','service','Callback','service_callback(handles)') // CALCULATE PUSHBUTTON handles.Calculate=uicontrol(f,'unit','normalized','BackgroundColor',[0,0.8,0],'Enable','on','FontAngle','normal','FontName','helvetica','FontSize',[16],'FontUnits','points','FontWeight','bold','ForegroundColor',[0,0,0],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.22,0.02,0.15,0.08],'Relief','raised','SliderStep',[0.01,0.1],'String','CALCULATE','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','Calculate','Callback','Calculate_callback(handles)') // Resources- TEXT handles.Resourcestxt=uicontrol(f,'unit','normalized','BackgroundColor',[1,1,1],'Enable','on','FontAngle','normal','FontName','helvetica','FontSize',[14],'FontUnits','points','FontWeight','bold','ForegroundColor',[0,0.5,0],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.75,0.95,0.20,0.05],'SliderStep',[0.01,0.1],'String','Resources in hours','Style','text','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','','Callback','') // TOTAL hours - TEXT handles.totalhourstxt=uicontrol(f,'unit','normalized','BackgroundColor',[1,1,1],'Enable','on','FontAngle','normal','FontName','helvetica','FontSize',[14],'FontUnits','points','FontWeight','bold','ForegroundColor',[0,0.5,0],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.75,0.75,0.12,0.05],'SliderStep',[0.01,0.1],'String','Total Hours','Style','text','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','','Callback','') // hardware hours - text handles.totalhours=uicontrol(f,'unit','normalized','BackgroundColor',[0.95,1,1],'Enable','on','FontAngle','normal','FontName','helvetica','FontSize',[14],'FontUnits','points','FontWeight','bold','ForegroundColor',[0,0.5,0],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.88,0.75,0.08,0.05],'SliderStep',[0.01,0.1],'String','','Style','text','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','totalhours','Callback','') function Calculate_callback(handles) if handles.service.value == 1 then resource_hrs = 2 end if handles.service.value == 2 then resource_hrs = 10 end set(handles.totalhours,'String',string(resource_hrs)); endfunction
Problem It is a scoping problem. When function exam_callback() gets called it runs the other script with exec('costs0-1.sce',-1). In that script you define the function Calculate_callback(handles). This goes out of scope and is deleted when exam_callback() is finished and as such can't be called when the button is pressed. The second problem is that the handles are not globally affected, so when leaving exam_callback() the handles of the second Cost Gui are not added to handles. Solution You can move the generating of the GUI into a function createCostGui() and then load script2 at the start of script1 with exec('costs0-1.sce',-1);. To make Calculate_callback(handles) function discard the handles argument and use the tags to find the handles function Calculate_callback() serviceHandle = findobj('tag','service'); if serviceHandle.value == 1 then resource_hrs = 2 end if serviceHandle.value == 2 then resource_hrs = 10 end totalHoursHandle = findobj('tag','totalhours'); set(totalHoursHandle,'String',string(resource_hrs)); endfunction Further remarks Text elements are generally static and thus don't need a Callback argument. If you want an argument to stay at its default value, you don't need to specify them. From the Scilab documentation: h = uicontrol(PropertyName, PropertyValue,...) creates an uicontrol and assigns the specified properties and values to it. It assigns the default values to any properties you do not specify. The default uicontrol style is a "Pushbutton". The default parent is the current figure. See the Properties section for information about these and other properties. Small remark on your question Next time an error message could help with making your question more specific.