How can be the variable of one slider be independent on variable of another slider , initially ?

1 回表示 (過去 30 日間)
Hello all, I am using two sliders for generating cylinder (for altering R and H).code is -
function slider1_Callback(hObject, eventdata, handles)
global a; global b;
a=get(hObject,'Value');
[xc,yc,zc] = cylinder(a);
zc(2,:)=b;
axes(handles.cylinder);
axis equal;
surf(zc,xc,yc,'Facecolor',[1 1 1]);
function slider2_Callback(hObject, eventdata, handles)
global b; global a;
b=get(hObject,'Value');
[xc,yc,zc] = cylinder(a);
zc(2,:)=b;
axes(handles.cylinder);
axis equal;
surf(zc,xc,yc,'Facecolor',[1 1 1]);
when I slide first slider it gives error because initially second slider does not have any value ('b' is undefined). So when I change value of 2nd slider then 1st slider then it generates cylinder . How could I make 1st slider independent of b initially ? means when I slide first slider in the beginning it should response , should not give the error. Thank you .

採用された回答

Walter Roberson
Walter Roberson 2016 年 2 月 15 日
Before
zc(2,:)=b;
add
if isempty(b)
b = get(handles.slider2, 'Value');
end

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeVector Fields についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by