![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/7030364.jpg)
Shawn Miller
Followers: 0 Following: 0
Statistik
29 Fragen
0 Antworten
RANG
10.599
of 297.016
REPUTATION
4
BEITRÄGE
29 Fragen
0 Antworten
ANTWORTZUSTIMMUNG
48.28%
ERHALTENE STIMMEN
4
RANG
of 20.419
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 157.725
BEITRÄGE
0 Probleme
0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Frage
What is the kernel that MATLAB currently uses for its Symbolic Math Toolbox?
Is the kernel still Maple or does MATLAB currently use its own built kernel?
fast 9 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How good does double() convert symbolic result to numerical result?
How precise does double() guarantee in conversion? I have this concern when I found my symbolic expression result has very "giga...
fast 9 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
How can I improve my code as below? I constructs an operator and repetitively call this operator, then I store the n times results in a vector.
My code now suffers from slow speed when g is a complex function or when I specify n as a relatively large integer. functio...
fast 9 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How do I preallocate symbolic matrix?
I got the warning of preallocation when I tried to change the size of my 1*n symbolic array (elements are symbolic expressions) ...
fast 9 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How do I create a matrix of symbolic function elements and also able to access the element in the matrix using row and column index?
I'd like to conduct matrix operation to symbolic functions. For instance, a row vector of symbolic functions times a column symb...
fast 9 Jahre vor | 1 Antwort | 0
1
AntwortFrage
I wrote 2 snippets as below, they both try to find minimum value, but one repetitively uses function handles and the other uses a sub function. It turns out the speed are very different? Why?
Two snippets are as follow (they are not my original codes and are used for illustration only), the input y is just an array, fo...
fast 9 Jahre vor | 1 Antwort | 0
1
AntwortFrage
In fmincon function, how can I impose non-strict constraints?
In fmincon, I know MATLAB can set constraints like a+b<=1 and a<=1, but what about a+b<1 and a<1?
fast 9 Jahre vor | 3 Antworten | 0
3
AntwortenFrage
What does command 'rng default;' do?
What is the difference with and without this command?
fast 9 Jahre vor | 1 Antwort | 3
1
AntwortFrage
If in one .m file, I write a nested function inside the main function, then I wonder if this nested function can call a function in another .m file?
I know that local functions cannot call exterior functions (i.e., functions in other .m files) but the main function can, howeve...
fast 9 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Why I got the error "Undefined operator '*' for input arguments of type 'function_handle"?
My code: f=@(x)x+1 g=@(x)x*f+4 g(1)
fast 9 Jahre vor | 1 Antwort | 1
1
AntwortFrage
Why I got a complex number rather than a real number in the program as below?
q=@(x)(x-1.0).^(1.0./5.0).*5.0+5.0; q(rand);
fast 9 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How do I create a 2^n by n matrix that the rows of the matrix enumerate all the possibilities for a n digit binary number?
For example, for n=3, there are 8 rows, and they are 000,100,010,001,110,101,001,111 (may not in this order). Any fast way to re...
etwa 9 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
I met this problem when I was using fmincon(). I try to optimize a function handle at starting point 8, but my function handle has structure "log(exp(-100*x))", this leads to -inf rather than -100*x. How can I overcome this problem?
In my case, I got "Error using barrier (line 22) Objective function is undefined at initial point. Fmincon cannot continue." It ...
etwa 9 Jahre vor | 3 Antworten | 0
3
AntwortenFrage
MATLAB failed to convert symbolic matrix into numeric matrix using double() function, anyone knows what happened?
I did some arithmetic using Symbolic Math Toolbox and got a 2 by 2 matrix. Due to the analytic arithmetic, the symbolic matrix's...
etwa 9 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
How do I convert multivariate function handle to symbolic function? Anyone has any ideas?
My function handle is as follows, g=@(p)p(1)+p(2) I can compute using function handle using something like g([1,2])...
etwa 9 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How do I evaluate matrix function in symbolic format as follows?
h_matrix = @(x)(x*pascal(3)); sym_matrix = sym(h_matrix) When I use sym_matrix(2) I got an error. My question i...
etwa 9 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
Is it true that one can solve numeric problems with Symbolic Math Toolbox since all computations using symbols are performed analytically rather than numerically?
For example, if one wants to calculate derivative, some numeric functions in MATLAB may handle this using finite differencing. H...
etwa 9 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
How do I suppress the scale factor of a matrix?
In matlab, if the largest element of a matrix is larger than 10^3 or smaller than 10^-3 , MATLAB applies a common scale factor f...
etwa 9 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Suppose the user inserts an integer n and a date string '1/1/2015' (stands for Jan 1 2015), then how do I find the date that is n days before Jan 1 2015?
It seems minus sign doesn't work. Any date function can help?
etwa 9 Jahre vor | 1 Antwort | 0
1
AntwortFrage
What may be the best way to order columns of a matrix?
I'd like to order each column for a matrix so that the smallest number is replaced with 1, the second smallest number is replace...
etwa 9 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How do I access to the database of Microsoft SQL Server from Matlab using ODBC?
I built a data source from Microsoft SQL Server in ODBC and attempted to connect to the data source using Database Explorer in M...
etwa 9 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
How do I deal with the Error: "Undefined function 'importfile' for input arguments of type 'char'."?
I got this error after importing text data by generating a function and entered in command window something like "matrix=importf...
mehr als 9 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
Where's the bug with my auxiliary function?
My code is as follows, it includes a main function (FindVolatility) and a local function (selectOutput). The idea here is I'd li...
mehr als 9 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How do I plot 3-dimentional graph of the following function? Can Plot3 function do this?
fun=@(x,y)100*(y-x^2)^2+(1-x)^2;
mehr als 9 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Where's the bug in the following codes?
fun=@(x,y)100*(y-x^2)^2+(1-x)^2; x=-10:1:10; y=-10:1:10; [z,val]=fminsearch(fun,3,3);
mehr als 9 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
How do I run codes in environments other than MATLAB default folder?
I met the problem when I tried to run the following code written in a script file on my desktop, [xasterisk,value]=fminsea...
mehr als 9 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Why I can't get my output? What's wrong with line 13?
<</matlabcentral/answers/uploaded_files/38000/Screen%20Shot%202015-10-05%20at%207.03.29%20PM.png>>
mehr als 9 Jahre vor | 1 Antwort | 0
1
AntwortFrage
I can't find >> symbol in my command window and whenever I type Enter key, it goes to the next line, why?
<</matlabcentral/answers/uploaded_files/37991/Screen%20Shot%202015-10-05%20at%202.51.26%20PM.png>>
mehr als 9 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How can I find the roots of implicit function using fzero function?
I have written a function on MATLAB, say z=fun(x,y), here fun is an implicit function. But my question is how do I find x given ...
mehr als 9 Jahre vor | 2 Antworten | 0