Uhmmmm....ogni tipo di motore ha una sua resistenza Rs
io devo leggerla non cambiarla...
cmq questo non è importante posso aggirare il problema
questo codice per il pop menù invece è giusto?
% --- Executes on selection change in popupmenu3.
function popupmenu3_Callback(hObject, eventdata, handles)
% hObject handle to popupmenu3 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: contents = cellstr(get(hObject,'String')) returns popupmenu3 contents as cell array
% contents{get(hObject,'Value')} returns selected item from popupmenu3
[color=#000000]i = contents{get(hObject,'Value')};
guidata(hObject, handles);
cioè in questo modo se nel pop menù scelgo ad esempio la terza voce questo comando ad i assegna valore 3...giusto?