Timothy Corley
自 2017 起处于活动状态
Followers: 0 Following: 0
Feeds
已回答
How to change the Matlab "toolstrip" color and font color?
Hey, for those asking how I changed what I did: go to the home tab in Matlab then click the little 'preferences' gear ...
How to change the Matlab "toolstrip" color and font color?
Hey, for those asking how I changed what I did: go to the home tab in Matlab then click the little 'preferences' gear ...
6 years 前 | 3
已回答
How to output a large matrix as a scale-able image/figure/something
Eh, ended up just borrowing a big ass tv, making the output a smaller font, and snipping a picture of it. Close enough
How to output a large matrix as a scale-able image/figure/something
Eh, ended up just borrowing a big ass tv, making the output a smaller font, and snipping a picture of it. Close enough
6 years 前 | 0
提问
How to output a large matrix as a scale-able image/figure/something
So I have this huge data set, top row is labels and everything else is a numerical value (this is only a piece of it). This dat...
6 years 前 | 1 个回答 | 0
1
个回答提问
How to change the Matlab "toolstrip" color and font color?
Instead of the blue and white border around the attached screenshot, I'd like a much darker version to match what's inside the s...
7 years 前 | 2 个回答 | 7
2
个回答提问
How to input a vector into a multi variable function as individual components?
This top part will be the input of my function and this part cannot be manipulated. F = @(x1,x2) [(4*x1^2 - 20*x1 + x2^2/4 ...
7 years 前 | 1 个回答 | 0
1
个回答提问
How to determine the size of an array of functions??
F = @(x1,x2) [(4*x1^2-20*x1+x2^2/4+8) ; (x1*x2/2+2*x1-5*x2+8)] J = @(x1,x2) [(8*x1-20) (x2/2) ; (x2/2+2) (x1/5-5)] x...
7 years 前 | 1 个回答 | 0
1
个回答提问
How to create a row/column vector of variable length composed of x1,x2,x3,...,xN
I have a column vector, x, of solutions for the equation ax=b, length of x = N, and I want to label which solution is which. N v...
7 years 前 | 2 个回答 | 0
2
个回答已回答
Odd results for a zero finding function after it converges... Please help!
incase anyone else finds themselves in this position, this is the final product. Works well function xsol = NewSol_Corley(F...
Odd results for a zero finding function after it converges... Please help!
incase anyone else finds themselves in this position, this is the final product. Works well function xsol = NewSol_Corley(F...
7 years 前 | 0
| 已接受
提问
Odd results for a zero finding function after it converges... Please help!
This function is a hack and slash version of the Bisection method and Newton's method for finding a zero intersection of an inpu...
7 years 前 | 1 个回答 | 0
1
个回答提问
Newton's Method preferring a direction for convergence?
I'm attempting to create a newton's method approximation for finding the roots of some function using 2 point central to estimat...
7 years 前 | 1 个回答 | 0
1
个回答提问
How to create a loglog plot out of an array? I have a 2xn array of all my data points called points & my loglog plot is showing the same graph as the normal plot tool.
%the data points match the equation y=x^2 almost exactly and my goal is to create %the loglog plot with my attempted wi...
7 years 前 | 1 个回答 | 0
1
个回答提问
How to get this function to output every iteration? It only formats the last iteration into the table
function N = 20; Table = zeros (N,2); for i = 0 : N x=i; delx = x/1000; true = x^2; a...
7 years 前 | 1 个回答 | 0