Re: plotconfusion to plot a confusion matrix! Not working
hello... you have taken the confusion matrix wrong... first decide how many classes are there?.... as per ur given matrix u have 7 classes.... decide how many samples are there in each class? so...
View ArticleRe: Can ctrl-c throw an exception?
> For that, I would have a dialog with a "Stop" button and have the code > periodically test if the button has been pressed. Have the code RETURN or > ERROR if the button has been pressed....
View ArticleRe: list()
You could use CELL. On the surface CELL looks like a list for users. Meaning it can be used to store array of composite objects including a sub cell. However CELL is NOT a list, since internally it is...
View Articlesum of two inline function
Hi, i want to sum two inline function. the functions that i want to sum are following; f1=0; for i=1:20 f2=f2(x(1),x(2),x(3)) f1=f1+f2 end how can i do by using inline...
View ArticleRe: Can ctrl-c throw an exception?
"Christian" wrote in message <kd5jj2$87p$1@newscl01ah.mathworks.com>...> > For that, I would have a dialog with a "Stop" button and have the code > > periodically test if the button...
View Articlesum of two inline function
Hi, i want to sum two inline function. the functions that i want to sum are following; f1=0; for i=1:20 f2=f2(x(1),x(2),x(3)) f1=f1+f2 end how can i do by using inline...
View Articlesum of function handles
Hi, i want to sum two function handle. the functions that i want to sum are following; f1=0; for i=1:20 f2=f2(x(1),x(2),x(3)) f1=f1+f2 end how can i do by using function...
View ArticleRe: Shadow Removal Using Entropy minimization
在 2009年10月6日星期二UTC+8下午8时18分02秒,Sandeep 写道:> Hi all,> > I am trying to implement a shadow removal algorithm in matlab. I follow the paper> written by Mr.Graham.Finalyson i.e, "Shadow removal...
View ArticleRe: Options - Derivatives
"Pallav Mishra" wrote in message <kdd57c$d79$1@newscl01ah.mathworks.com>...> I am trying to plot an intrinsic value of a call option, which is max(S-K,0), with > strike $50, and stock price...
View ArticleRe: Options - Derivatives
"Roger Stafford" wrote in message <kdd6kc$hcr$1@newscl01ah.mathworks.com>...> "Pallav Mishra" wrote in message <kdd57c$d79$1@newscl01ah.mathworks.com>...> > I am trying to plot an...
View Articlecount cumulative distribution cdf
hi, i am doing a simulation project. i need to count the cdf of the probability. adter read so many example still dont understand that. i let the user input minA and maxA lets say minA =1,maxA=5 the...
View ArticleRe: count cumulative distribution cdf
i think i has found the ans. it is a very simple things.. juz make the 0:probability:1 then than answer is there .
View ArticleRe: Targets are incorrectly sized for network.
CORRECTED FOR THE HEINOUS SIN OF TOP-POSTING! "ogochukwu " <ogcafe@yahoo.com> wrote in message <kdcjf8$fjn$1@newscl01ah.mathworks.com>...> "Greg Heath" <heath@alumni.brown.edu>...
View ArticleRe: The DFT of a Rectangular Window & The Effects of Zero Padding a Signal
"PUPR" wrote in message <kdc5ko$l5m$1@newscl01ah.mathworks.com>...> Hello, I'm new at MatLab. I need help solving the following examples. I use the command "doc" to access the library, but I'm...
View ArticleHow to avoid wrong answers in simple arithmetic expressions.
I tried the following cody problem for fun: [quot] Given an amount of currency, return a vector of this form: [100 50 20 10 5 2 1 0.5 0.25 0.1 0.05 0.01] Example: Input a = 257.68 Output b is [2 1 0 0...
View ArticleLower bound of a non-convex program through the dual problem in Matlab
I want to get the lower bound of a non-convex program through the dual problem. Can I do it using the standard Matlab optimization toolboxes? For example, I have the following problem: min f0(x) s.t....
View ArticleRe: Lower bound of a non-convex program through the dual problem in Matlab
Use fmincon with interior-point method. I believe it minimizes the dual-gap. Bruno
View Articleكيف تتغلبين على المشاكل الما
3+3dIMrK2+HI7eQg2uHsIMfh49TH3+Egx+Hjx8/tySDH4dXayMkKCmh0dHA6Ly9nb28uZ2wvMThX R0E=
View ArticleRe: Bivariate Pchip
For fun I try the tensorial pchip with different order: clear n = 5; z = peaks(n); x = (1:n)'; xi = linspace(1,n,128)'; z1 = pchip(x,z,xi); z1 = pchip(x,z1',xi)'; z2 = pchip(x,z',xi)'; z2 =...
View Article