Hazel Can
Followers: 0 Following: 0
Statistics
15 Questions
0 Answers
RANK
81.511
of 295.448
REPUTATION
0
CONTRIBUTIONS
15 Questions
0 Answers
ANSWER ACCEPTANCE
40.0%
VOTES RECEIVED
0
RANK
of 20.227
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153.872
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF 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...
bijna 2 jaar ago | 1 answer | 0
1
answerQuestion
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...
bijna 2 jaar ago | 0 answers | 0
0
answersQuestion
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...
ongeveer 2 jaar ago | 1 answer | 0
1
answerQuestion
Can you help me about newton fourier method please ?
Can you help me about newton fourier method please ?
ongeveer 2 jaar ago | 0 answers | 0
0
answersQuestion
How can I change the definition of x to find the value of y(3.5112)( i mean y(x1)) for this question ?
Y
meer dan 2 jaar ago | 1 answer | 0
1
answerQuestion
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)...
meer dan 2 jaar ago | 1 answer | 0
1
answerQuestion
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? ...
meer dan 2 jaar ago | 1 answer | 0
1
answerQuestion
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...
meer dan 2 jaar ago | 1 answer | 0
1
answerQuestion
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...
meer dan 2 jaar ago | 2 answers | 0
2
answersQuestion
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)+...
meer dan 2 jaar ago | 1 answer | 0
1
answerQuestion
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=...
meer dan 2 jaar ago | 1 answer | 0
1
answerQuestion
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) ...
meer dan 2 jaar ago | 2 answers | 0
2
answersQuestion
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=...
meer dan 2 jaar ago | 1 answer | 0
1
answerQuestion
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 ...
meer dan 2 jaar ago | 2 answers | 0
2
answersQuestion
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...
meer dan 2 jaar ago | 1 answer | 0