Statistics
5 Questions
0 Answers
RANK
78,020
of 300,302
REPUTATION
0
CONTRIBUTIONS
5 Questions
0 Answers
ANSWER ACCEPTANCE
40.0%
VOTES RECEIVED
0
RANK
of 20,911
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 168,040
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
Why does it keep saying that my output variable I is not assigned? It also says there are not enough input arguements for N = length(fx)
function [I] = simp38int( h , fx ) % this function takes data sampled at evenly spaced locations as inputs and %returns...
9 years ago | 2 answers | 0
2
answersQuestion
Why is it saying that I am exceeding the matrix dimensions for the sum_xy when x(2) is clearly a part of the vector that I give
function [ y ] = linregress( XDATA, YDATA ) %linear regression function using given algorithm % Detailed explanation g...
9 years ago | 1 answer | 0
1
answerQuestion
I have to follow a specific algorithm for this code but my L and U are coming out as single digits, not matrix and I am not sure why/ how to do that (algorithm is attached as picture)
function [L, U] = crout_LU( A ) %this function decomposes matrix A into a lower triangular matrix L and an %upper triangular m...
9 years ago | 1 answer | 0
1
answerQuestion
For some reason every time I try to test my forward elimination function there is an error in the sum part, I cannot figure out why or what else I need to ad
function [ y ] = forward_elim( L, b ) %performs gaussian foward elimination solving Ly=b using specific %algorithm given...
9 years ago | 1 answer | 0
1
answerQuestion
I need to find the roots of a function by creating a function that uses the secant method. The outputs are all stated below and explained, for some reason my loop is never ending
function [ root,err,numIter, exitFlag ] = secant( fun, prev, curr, err_max, iter_max ) %check to see if the end points are ...
9 years ago | 1 answer | 0