Statistics
RANK
99,105
of 298,905
REPUTATION
0
CONTRIBUTIONS
12 Questions
1 Answer
ANSWER ACCEPTANCE
75.0%
VOTES RECEIVED
0
RANK
of 20,656
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 162,856
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 do I add the sum of 1st 3 elements of a vector in a for loop?
I'd like for my for loop to end at n-1 as I have other code in the body. I just want to add a line in the for loop to add the su...
1 day ago | 1 answer | 0
1
answerQuestion
Estimate area under a curve using finite approximations (lower sum with 4 rectangles of equal length)
Hi, I'm having trouble calculating area under a curve using lower sum with 4 rectangles, specifically the for loop. This is my c...
3 days ago | 3 answers | 0
3
answersQuestion
Plotting a vertical line using xline with a value
Hello, I'm trying to plot a vertical dashed line with a value (set as a variable) I have found with my code, but it won't plot. ...
4 days ago | 1 answer | 0
1
answerQuestion
How do I find second order implicit differentiation (d2y/dx2) of a function in MATLAB
Hello, I'm able to find 1st order (dy/dx) of a function, but if I try to do the process again on dy/dx it doesn't work to find d...
16 days ago | 1 answer | 0
1
answerQuestion
Legend & Labeling points in a plot
I'd like to have a legend that shows all tangent lines and curves of my graph, also label points if possible either in the legen...
17 days ago | 1 answer | 0
1
answerQuestion
Display data in a while loop as a table
Hello, I'm trying to approximate the root of a function using Newton's method and display the results as a table. I've found my ...
29 days ago | 2 answers | 0
2
answersQuestion
How to specify intervals of increasing, decreasing of a function in MATLAB
Hello, I want to specify intervals of increasing & decreasing of a function for a specific range; say -20-20. This is my code he...
1 month ago | 2 answers | 0
2
answersQuestion
Getting all max, min values of a function as a set of coordinate points
My code only returns 1 set of points for max, min. There are more points based on the graph I provide. This is my code: clear, ...
1 month ago | 1 answer | 0
1
answerQuestion
Not able to get local and absolute max or min of a function or graph symbolically
Hello, I'm trying to code a program that will calculate critical points and tell the user where local and absolute max or min va...
1 month ago | 1 answer | 0
1
answerQuestion
Using fprintf in a for loop to display the output as a set of coordinate points
Hi, I'm having trouble displaying the output of a math problem about critical points of a function as a set of coordinate points...
1 month ago | 2 answers | 0
2
answersQuestion
How to get real root of a function using fminbnd?
Hello, How can I force MATLAB to only give real solutions to a math function using fminbnd? This is my code: x=-1:0.01:8; y=@(...
1 month ago | 2 answers | 0
2
answersQuestion
Getting a shorter, more simple answer as output
How can I get a shorter answer, ideally an exact answer but decimal is also fine. This is my code: syms x y y=(log(x)/log(4))+...
2 months ago | 2 answers | 0
2
answersAdding Linestyle to ezplot in Matlab
Doing something like this would solve your dashed line problem: syms x f = inline('x.^2*exp(-x)', 'x'); d = inline('x.^3', ...
2 months ago | 0