Borrar filtros
Borrar filtros

Change meshgrid axes min/step/max value using a GUI

1 visualización (últimos 30 días)
Daniel Green
Daniel Green el 13 de Jul. de 2017
Respondida: Elias Gule el 13 de Jul. de 2017
I'm trying to make a program where you can change the limits and steps of each axis on a 3D meshgrid.
[x,y,z] = meshgrid(minX:stepX:maxX,minY:stepY:maxY,minZ:stepZ:maxZ);
I'm trying to use edit text widgets to enter the data. My callback looks like:
function edit_minX_Callback(hObject, eventdata, handles)
minX = str2double(get(handles.edit_minX,'String'));
assignin('base','minX',minX);
I've already watched this video: http://blogs.mathworks.com/videos/2011/11/23/passing-data-between-guide-callbacks-without-globals-in-matlab/ and it looks like that is the way to do it. However, it doesn't quite help with my specific needs. Help?

Respuestas (1)

Elias Gule
Elias Gule el 13 de Jul. de 2017
Does this help:
assignin('base','minX',eval(minX)); % minX is the text such as '2:3:18'

Categorías

Más información sobre Lighting, Transparency, and Shading 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!

Translated by