Hazel Can
Followers: 0 Following: 0
Statistiques
15 Questions
0 Réponses
RANG
81 511
of 295 448
RÉPUTATION
0
CONTRIBUTIONS
15 Questions
0 Réponses
ACCEPTATION DE VOS RÉPONSES
40.0%
VOTES REÇUS
0
RANG
of 20 227
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 153 872
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Question
How can i solve the Too many output arguments error problem ?
clc clear syms x f=input('\n Enter the function f(x): '); %inline('((x^2)*log(x))') f=@ (x) (x^2)*log(x) a=input('Enter low...
presque 2 ans il y a | 1 réponse | 0
1
réponseQuestion
How can I switch from Simpson code to composite simpson code?
Composite simpson rule : Simpson rule's code : % MATLAB code for syms function that creates a variable % dynamically and au...
presque 2 ans il y a | 1 réponse | 0
0
réponseQuestion
How can i implement my method ?
I know the classic newton method but i can not implement the fourier form please help me. %Newton-Raphson method clear; clc...
environ 2 ans il y a | 1 réponse | 0
1
réponseQuestion
Can you help me about newton fourier method please ?
Can you help me about newton fourier method please ?
environ 2 ans il y a | 1 réponse | 0
0
réponseQuestion
How can I change the definition of x to find the value of y(3.5112)( i mean y(x1)) for this question ?
Y
plus de 2 ans il y a | 1 réponse | 0
1
réponseQuestion
How can i run correctly my Backward Difference Formula code ?
%% Backward Difference Formula Method %% clc; clear all; h=0.01; t=0:h:1; n=numel(t); mu = 20; f_m = @(t,y) mu*(y-cos(t)...
plus de 2 ans il y a | 1 réponse | 0
1
réponseQuestion
How i implement Backward Difference Formula Method from general code ?
Below is the Backward Difference Formula general code. How can I adapt this code to the above question? Can you please help? ...
plus de 2 ans il y a | 1 réponse | 0
1
réponseQuestion
How i implement Adams Predictor-Corrector Method from general code ?
Below is the Adams predictor-corrector formula and general code. How can I adapt this code to the above question? Can you plea...
plus de 2 ans il y a | 1 réponse | 0
1
réponseQuestion
Not enough input arguments.
Not enough input arguments. Error in BDF>@(t,y)mu*(y-cos(t))-sin(t) (line 7) f_m = @(t,y) mu*(y-cos(t))-sin(t); Error i...
plus de 2 ans il y a | 2 réponses | 0
2
réponsesQuestion
Array indices must be positive integers or logical values.
Array indices must be positive integers or logical values. Error in adambashforthalternatif (line 14) y_m(i)=y_m(i-1)+...
plus de 2 ans il y a | 1 réponse | 0
1
réponseQuestion
Error using plot Vectors must be the same length.
Error using plot Vectors must be the same length. Error in midpointfinal (line 33) plot(t,y_m,'-o') clc; clear all; h=...
plus de 2 ans il y a | 1 réponse | 0
1
réponseQuestion
Index in position 1 is invalid. Array indices must be positive integers or logical values.
Index in position 1 is invalid. Array indices must be positive integers or logical values. Error in midpointfinal (line 21) ...
plus de 2 ans il y a | 2 réponses | 0
2
réponsesQuestion
How can I continue my Leapfrog method code ?
How can I continue my Leapfrog / midpoint two- step method code ? clc; clear all; t=[0 1]; h=0.01; n=(t(2)-t(1))/h; alpha=...
plus de 2 ans il y a | 1 réponse | 0
1
réponseQuestion
Index exceeds the number of array elements. Index must not exceed 2.
Hi. I have an error : Index exceeds the number of array elements. Index must not exceed 2. for line 16. Why ? and How can i fix ...
plus de 2 ans il y a | 2 réponses | 0
2
réponsesQuestion
Why am I getting an : Error using sym/subsasgn (line 1058) Invalid indexing or function definition. Indexing must follow MATLAB indexing. Function arguments must be symbolic
Hello, I am writing a code to solve my Forward Euler Method question. I added my question here. I am encountering an error whi...
plus de 2 ans il y a | 1 réponse | 0