Statistics
10 Questions
0 Answers
RANK
192 952
of 295 467
REPUTATION
0
CONTRIBUTIONS
10 Questions
0 Answers
ANSWER ACCEPTANCE
90.0%
VOTES RECEIVED
0
RANK
of 20 234
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153 912
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 make the dimensions agree for this function
f = @(x) x - exp(cos(transpose[1:4])*sum(x)); And x=[2.5;2;1.4;.9] is a column vector. when I subtract it says error Matrix dim...
nästan 10 år ago | 1 answer | 0
1
answerQuestion
Subscripted assignment dimension mismatch.(matrices)
J = eye(4); % 4x4 identity matrix u = sum(x); N=[exp(cos(u))*sin(u),exp(cos(u))*sin(u),exp(cos(u))*sin(u),exp(cos(u))*si...
nästan 10 år ago | 2 answers | 0
2
answersQuestion
How do i complete this matrix that has n+1 rows and m columns?
This stops at the 2nd row of the matrix, How can i get the whole matrix? Also, can someone explain what is going on? func...
ungefär 10 år ago | 1 answer | 0
1
answerQuestion
Help vectors size doesn't match...why?
This is my code to evaluate Lagrange where x_in are the given interpolation points and x_out is suppose to be f(x_in), but it ke...
ungefär 10 år ago | 1 answer | 0
1
answerQuestion
How to make this Lagrange formula vectorized work for all Ln? This is only for L3
if true % code end function f_handle = make_L3(x_in) x3 = x_in(3); not_x3 = [x_in(1:2), x_in(4:end)]; ...
ungefär 10 år ago | 0 answers | 0
0
answersQuestion
How do I write this expression in matlab?
How do I write this expression in matlab? a(n)=sqrt(a(n-1))*(n+1)^(1/(2*k))
ungefär 10 år ago | 1 answer | 0
1
answerQuestion
How do I get formula for the nth term of this on matlab?
sqrt(1+2sqrt(1+3sqrt(1+4sqrt(1+...)))) I know this limit is 3...but I need to get matlab to give me the first 40 terms. I am...
ungefär 10 år ago | 4 answers | 0
4
answersQuestion
How to run this code on any inputs?Newton
function [p,k] = newton(f,df,p0,tol) for k=1:100 p = p0 - f(p0)/df(p0); if abs(p-p0)<tol, break; end p0 = p;...
ungefär 10 år ago | 2 answers | 0
2
answersQuestion
How do I get my code to display the associated x values for maximum and minimum
In addition, How do I get it to label the coordinates in the graph it makes? I tried getting it to display Xmax or Xmin, but...
ungefär 10 år ago | 1 answer | 0
1
answerQuestion
Help my code won't run for finding the minimum and maximum of a function
The function is p(x) and when you take the derivative, I get the quadratic formula and I'm trying to use it to find critical poi...
ungefär 10 år ago | 2 answers | 0