Matlab - Metodo de Taylor con Guide

 
Vista:
Imágen de perfil de Nager

Metodo de Taylor con Guide

Publicado por Nager (4 intervenciones) el 16/04/2014 19:42:48
Buenos tardes compañeros, espero que esten bien y con la gracia del señor:
Resulta que para la universidad tenemos que implementar el metodo de Taylor para resolver ecuaciones, por lo cual he decidido realizar una aplicacion que me genere la serie de Taylor y mediante esta, la evalue y me genere los valores de Y en una tabla y con su respectiva grafica. Tengo entendido que Matlab tiene el codigo de taylor y esta me genera la serie de acuerdo a los datos de entradas y tambien tiene el Taylotool el cual es una interfaz grafica, pero esta no me genera los valores de Y, a parte de que tampoco tengo acceso al codigo. Entoces decidi hacer una interfaz que se adecue a mis necesidades pero estoy teniendo inconvenientes con el codigo a la hora generar la serie. El codigo del PushBotton(Generar serie). Es el siguiente:

% --- Executes on button press in pushbutton8.
function pushbutton8_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton8 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
n=(get(handles.edit1,'string'));
n1=str2double(get(handles.edit2,'string'));
n2=str2double(get(handles.edit3,'string'));
n3=str2double(get(handles.edit4,'string'));
n4=str2double(get(handles.edit5,'string'));
n5= taylor(n, 'ExpansionPoint', n3, 'Order', n4);
set(handles.text1,'string',n5);
clc


Como se observa en la imagen, no entiendo porque en vez de generar la serie me esta arrojando un dato numerico.
Cualquier ayuda que me ofrezcan se lo agradeceria. Normalmente cuando ejecuto en consola el algoritmo de taylor el me genera la serie, pero he tenido este problema con el guide.

Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder
Imágen de perfil de JOSE JEREMIAS CABALLERO
Val: 6.975
Oro
Ha mantenido su posición en Matlab (en relación al último mes)
Gráfica de Matlab

Metodo de Taylor con Guide

Publicado por JOSE JEREMIAS CABALLERO (5917 intervenciones) el 17/04/2014 00:54:38
Podrias subir tu código al foro para poder ubicar el error.
Una forma rápida y eficaz de poder ayudarte es viendo tu código personalmente, si deseas sube código al foro y por allí tendrás una respuesta adecuada.


Saludos.
JOSE JEREMÍAS CABALLERO
Asesoría online y Presencial en Matlab
programador en matlab
Servicios de programación matlab
[email protected]
El correo es para servicios de programación, toda ayuda gratuita es vía foro.


http://matlabcaballero.blogspot.com

http://www.lawebdelprogramador.com/foros/Matlab/1371532-FORMA_DE_APRENDER_MATLAB.html
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
Imágen de perfil de Respuesta

Metodo de Taylor con Guide

Publicado por Respuesta (4 intervenciones) el 17/04/2014 02:39:33
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
function varargout = taylor(varargin)
% TAYLOR MATLAB code for taylor.fig
%      TAYLOR, by itself, creates a new TAYLOR or raises the existing
%      singleton*.
%
%      H = TAYLOR returns the handle to a new TAYLOR or the handle to
%      the existing singleton*.
%
%      TAYLOR('CALLBACK',hObject,eventData,handles,...) calls the local
%      function named CALLBACK in TAYLOR.M with the given input arguments.
%
%      TAYLOR('Property','Value',...) creates a new TAYLOR or raises the
%      existing singleton*.  Starting from the left, property value pairs are
%      applied to the GUI before taylor_OpeningFcn gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to taylor_OpeningFcn via varargin.
%
%      *See GUI Options on GUIDE's Tools menu.  Choose "GUI allows only one
%      instance to run (singleton)".
%
% See also: GUIDE, GUIDATA, GUIHANDLES

% Edit the above text to modify the response to help taylor

% Last Modified by GUIDE v2.5 16-Apr-2014 14:04:35

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name',       mfilename, ...
                   'gui_Singleton',  gui_Singleton, ...
                   'gui_OpeningFcn', @taylor_OpeningFcn, ...
                   'gui_OutputFcn',  @taylor_OutputFcn, ...
                   'gui_LayoutFcn',  [] , ...
                   'gui_Callback',   []);
if nargin && ischar(varargin{1})
    gui_State.gui_Callback = str2func(varargin{1});
end

if nargout
    [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
else
    gui_mainfcn(gui_State, varargin{:});
end
% End initialization code - DO NOT EDIT


% --- Executes just before taylor is made visible.
function taylor_OpeningFcn(hObject, eventdata, handles, varargin)
% This function has no output args, see OutputFcn.
% hObject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
% varargin   command line arguments to taylor (see VARARGIN)

% Choose default command line output for taylor
handles.output = hObject;

% Update handles structure
guidata(hObject, handles);

% UIWAIT makes taylor wait for user response (see UIRESUME)
% uiwait(handles.figure1);


% --- Outputs from this function are returned to the command line.
function varargout = taylor_OutputFcn(hObject, eventdata, handles) 
% varargout  cell array for returning output args (see VARARGOUT);
% hObject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Get default command line output from handles structure
varargout{1} = handles.output;


% --- Executes on button press in pushbutton1.
function pushbutton1_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in pushbutton2.
function pushbutton2_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton2 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)



function edit1_Callback(hObject, eventdata, handles)
% hObject    handle to edit1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Hints: get(hObject,'String') returns contents of edit1 as text
%        str2double(get(hObject,'String')) returns contents of edit1 as a double


% --- Executes during object creation, after setting all properties.
function edit1_CreateFcn(hObject, eventdata, handles)
% hObject    handle to edit1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% Hint: edit controls usually have a white background on Windows.
%       See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
    set(hObject,'BackgroundColor','white');
end


% --- Executes on button press in pushbutton3.
function pushbutton3_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton3 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)



function edit2_Callback(hObject, eventdata, handles)
% hObject    handle to edit2 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Hints: get(hObject,'String') returns contents of edit2 as text
%        str2double(get(hObject,'String')) returns contents of edit2 as a double


% --- Executes during object creation, after setting all properties.
function edit2_CreateFcn(hObject, eventdata, handles)
% hObject    handle to edit2 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% Hint: edit controls usually have a white background on Windows.
%       See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
    set(hObject,'BackgroundColor','white');
end


% --- Executes on button press in pushbutton4.
function pushbutton4_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton4 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)



function edit3_Callback(hObject, eventdata, handles)
% hObject    handle to edit3 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Hints: get(hObject,'String') returns contents of edit3 as text
%        str2double(get(hObject,'String')) returns contents of edit3 as a double


% --- Executes during object creation, after setting all properties.
function edit3_CreateFcn(hObject, eventdata, handles)
% hObject    handle to edit3 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% Hint: edit controls usually have a white background on Windows.
%       See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
    set(hObject,'BackgroundColor','white');
end


% --- Executes on button press in pushbutton5.
function pushbutton5_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton5 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)



function edit4_Callback(hObject, eventdata, handles)
% hObject    handle to edit4 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Hints: get(hObject,'String') returns contents of edit4 as text
%        str2double(get(hObject,'String')) returns contents of edit4 as a double


% --- Executes during object creation, after setting all properties.
function edit4_CreateFcn(hObject, eventdata, handles)
% hObject    handle to edit4 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% Hint: edit controls usually have a white background on Windows.
%       See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
    set(hObject,'BackgroundColor','white');
end


% --- Executes on button press in pushbutton6.
function pushbutton6_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton6 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)



function edit5_Callback(hObject, eventdata, handles)
% hObject    handle to edit5 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Hints: get(hObject,'String') returns contents of edit5 as text
%        str2double(get(hObject,'String')) returns contents of edit5 as a double


% --- Executes during object creation, after setting all properties.
function edit5_CreateFcn(hObject, eventdata, handles)
% hObject    handle to edit5 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% Hint: edit controls usually have a white background on Windows.
%       See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
    set(hObject,'BackgroundColor','white');
end


% --- Executes on button press in pushbutton7.
function pushbutton7_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton7 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in pushbutton8.
function pushbutton8_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton8 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
n=str2double(get(handles.edit1,'string'));
n1=str2double(get(handles.edit2,'string'));
n2=str2double(get(handles.edit3,'string'));
n3=str2double(get(handles.edit4,'string'));
n4=str2double(get(handles.edit5,'string'));
n5= taylor(n, 'ExpansionPoint', n3, 'Order', n4);
set(handles.text1,'string',n5);
clc


% --- Executes on button press in pushbutton9.
function pushbutton9_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton9 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)



% --- If Enable == 'on', executes on mouse press in 5 pixel border.
% --- Otherwise, executes on mouse press in 5 pixel border or over pushbutton2.
function pushbutton2_ButtonDownFcn(hObject, eventdata, handles)
% hObject    handle to pushbutton2 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in pushbutton10.
function pushbutton10_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton10 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)



function edit6_Callback(hObject, eventdata, handles)
% hObject    handle to edit6 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Hints: get(hObject,'String') returns contents of edit6 as text
%        str2double(get(hObject,'String')) returns contents of edit6 as a double


% --- Executes during object creation, after setting all properties.
function edit6_CreateFcn(hObject, eventdata, handles)
% hObject    handle to edit6 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% Hint: edit controls usually have a white background on Windows.
%       See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
    set(hObject,'BackgroundColor','white');
end


% --- Executes on key press with focus on pushbutton2 and none of its controls.
function pushbutton2_KeyPressFcn(hObject, eventdata, handles)
% hObject    handle to pushbutton2 (see GCBO)
% eventdata  structure with the following fields (see UICONTROL)
%	Key: name of the key that was pressed, in lower case
%	Character: character interpretation of the key(s) that was pressed
%	Modifier: name(s) of the modifier key(s) (i.e., control, shift) pressed
% handles    structure with handles and user data (see GUIDATA)


% --- If Enable == 'on', executes on mouse press in 5 pixel border.
% --- Otherwise, executes on mouse press in 5 pixel border or over text1.
function text1_ButtonDownFcn(hObject, eventdata, handles)
% hObject    handle to text1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes during object creation, after setting all properties.
function text1_CreateFcn(hObject, eventdata, handles)
% hObject    handle to text1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

El codigo que me coloca problema es:
% --- Executes on button press in pushbutton8.
function pushbutton8_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton8 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
n=(get(handles.edit1,'string'));
n1=str2double(get(handles.edit2,'string'));
n2=str2double(get(handles.edit3,'string'));
n3=str2double(get(handles.edit4,'string'));
n4=str2double(get(handles.edit5,'string'));
n5= taylor(n, 'ExpansionPoint', n3, 'Order', n4);
set(handles.text1,'string',n5);
clc
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
Imágen de perfil de JOSE JEREMIAS CABALLERO
Val: 6.975
Oro
Ha mantenido su posición en Matlab (en relación al último mes)
Gráfica de Matlab

Metodo de Taylor con Guide

Publicado por JOSE JEREMIAS CABALLERO (5917 intervenciones) el 17/04/2014 03:05:44
me refiero que deberías subir los códigos tanto el fig y el m para poder descargarlo y ejecutarlo .
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
Imágen de perfil de JOSE JEREMIAS CABALLERO
Val: 6.975
Oro
Ha mantenido su posición en Matlab (en relación al último mes)
Gráfica de Matlab

Metodo de Taylor con Guide

Publicado por JOSE JEREMIAS CABALLERO (5917 intervenciones) el 17/04/2014 13:04:15
Problema resuelto.
Valido a partir de 2012a.


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
function varargout = taylor1(varargin)
gui_Singleton = 1;
gui_State = struct('gui_Name',       mfilename, ...
                   'gui_Singleton',  gui_Singleton, ...
                   'gui_OpeningFcn', @taylor1_OpeningFcn, ...
                   'gui_OutputFcn',  @taylor1_OutputFcn, ...
                   'gui_LayoutFcn',  [] , ...
                   'gui_Callback',   []);
if nargin && ischar(varargin{1})
    gui_State.gui_Callback = str2func(varargin{1});
end
 
if nargout
    [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
else
    gui_mainfcn(gui_State, varargin{:});
end
 
function taylor1_OpeningFcn(hObject, eventdata, handles, varargin)
handles.output = hObject;
guidata(hObject, handles);
function varargout = taylor1_OutputFcn(hObject, eventdata, handles)
varargout{1} = handles.output;
 
function funcion_Callback(hObject, eventdata, handles)
function extremo_inicio_Callback(hObject, eventdata, handles)
function Extremo_final_Callback(hObject, eventdata, handles)
function punto_a_evaluar_Callback(hObject, eventdata, handles)
function orden_taylor_Callback(hObject, eventdata, handles)
function tamano_de_paso_Callback(hObject, eventdata, handles)
 
function calcular_serie_Callback(hObject, eventdata, handles)
fun1=get(handles.funcion,'string');
n1=str2double(get(handles.extremo_inicio,'string'));
n2=str2double(get(handles.Extremo_final,'string'));
punto_expansion=str2double(get(handles.punto_a_evaluar,'string'));
order=str2double(get(handles.orden_taylor,'string'));
paso=str2double(get(handles.tamano_de_paso,'string'));
tay= taylor(vpa(fun1), 'ExpansionPoint', punto_expansion, 'Order', order);
fun=vectorize(inline(tay));
set(handles.text1,'string',char(tay));
xx=n1:paso:n2;
fx=fun(xx);
handles.xx=xx;
handles.fx=fx;
guidata(hObject, handles);
 
function Calcular_datos_y_graficar_Callback(hObject, eventdata, handles)
xx=handles.xx;
fx=handles.fx;
plot(xx,fx)
 
function Valores_Callback(hObject, eventdata, handles)




1
2
En tu código:
 set(handles.text1,'string',char(n5));





Saludos.
JOSE JEREMÍAS CABALLERO
Asesoría online y Presencial en Matlab
programador en matlab
Servicios de programación matlab
[email protected]
El correo es para servicios de programación, toda ayuda gratuita es vía foro.


http://matlabcaballero.blogspot.com


http://www.lawebdelprogramador.com/foros/Matlab/1371532-FORMA_DE_APRENDER_MATLAB.html
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
Imágen de perfil de Nager

Metodo de Taylor con Guide

Publicado por Nager (4 intervenciones) el 18/04/2014 00:48:38
Guaauuu.... que cambio con respecto al mio......... Se nota la experiencia que usted tiene. Ya casi lo estoy terminando , solo tengo un problema y es quisiera mostrar los valores de X y Y, en una tabla que se pueda deslizar, los cuales se generaron al momento de evaluar los valores de X en la serie que se obtuvo. Se puede decir que en realidad las columnas son 2 (X y Y). Pero las filas si deben ser variables de acuerdo al valor inicial de x y de su final, de acuerdo al paso que ingreso la persona. Por ejemplo SI el usuario ingreso el valor inicial -1 y final de 1 con un paso de 0,5 se obtendria esto:

_______________
l X l Y I
--------------------------
1 l -1 l 0,45 l
2 l -0,5 l 0,80 l
3 l 0 l 0,90 l
4 l 0,5 l 1 l
5 l 1 l 1,2 l

Los resultados de los valores de Y, se obtienen al evaluar los valores de X en la serie. Esto es lo que hace el programa, aunque no lo muestra, para mi caso es necesario mostrarlo.
Estos valores quisiera mostrarlo en una uitable pero no he podido.

A pesar que nunca me han enseñado a utilizar el software, sino que lo que sé, es poque he investigado y probado, y gracias a persona como usted es que uno aprende mucho mas y tambien puede ayudar a otros. El programa que usted modifico, le he agregado otras opciones con los cuales no he tenido problemas, solo lo he tenido con esta parte. Otra pregunta, yo realice, junto con varias personas un guide del metodo de la secante el cual nos gustaria compartirlo con la comunidad. Este programa no tiene ningun problema y funciona de maravilla. Para compartirlo ¿creo otro foro?. Le adjunto lo que se ha hecho por el metodo de taylor.
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
Imágen de perfil de Marcos

Metodo de Taylor con Guide

Publicado por Marcos (1 intervención) el 24/08/2015 22:07:16
Hola,

Saludos !!

He intentado ejecutar su archivo corregido, sin embargo el programa no corre y genera el siguiente mensaje de error. Agradezco su comentario. Estoy usando Matlab R2014a.

Anexo imagen.
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
Imágen de perfil de JOSE JEREMIAS CABALLERO
Val: 6.975
Oro
Ha mantenido su posición en Matlab (en relación al último mes)
Gráfica de Matlab

Metodo de Taylor con Guide

Publicado por JOSE JEREMIAS CABALLERO (5917 intervenciones) el 27/08/2015 05:15:11
El código es correcto. El detalle es que aun te falta conocer algo de guide me parece. Los guides tiene dos archivos un fig y otro m. El guide puesto en el foro ya tiene un nombre reservado y tu estas cambiando allí el otro error también. Saludos.

Saludos.
JOSE JEREMÍAS CABALLERO
Asesoría online y Presencial en Matlab
programador en matlab
Servicios de programación matlab
[email protected]
El correo es para servicios de programación, asesora online y cursos online, toda ayuda gratuita es vía foro.




http://matlabcaballero.blogspot.com
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar

Metodo de Taylor con Guide

Publicado por Julian Torres (1 intervención) el 17/05/2021 04:10:42
me podría ayudar con el código porfavor
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar