Unrecognized function or variable 'fHG1Client'
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Tenzin Kunkyab
el 10 de Ag. de 2021
Respondida: Walter Roberson
el 10 de Ag. de 2021
Hi community,
I am using a code that was written for Matlab 2014 or earlier. I am getting this error "Unrecognized function or variable 'fHG1Client' whenever I run the code. I am sure there is no easy way to convert the code direclty to newever version of matlab but i would like to ask the community if there is a starting point somewhere where I can try ot fix the bug. Following is the piece of code:
jWindow1 = [];
while isempty(jWindow1)
pause(0.001)
jFigPeer = get(handle(gcf),'JavaFrame');
jWindow1 = jFigPeer.fHG1Client.getWindow;
end
0 comentarios
Respuesta aceptada
Walter Roberson
el 10 de Ag. de 2021
would lead to
jWindow1 = jFigPeer.fHG2Client.getWindow;
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Environment and Settings en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!