| Thread | Last Post | Replies |
|
| Database class: unextensible? (In Matlab 2007, at least) | 15 Jul 2008 20:42 GMT | 1 |
.. using either 'old' or 'new' (undocumented) syntax. New: classdef mydatabase < database end
|
| timer doesnt work correctly in standalone exe | 15 Jul 2008 19:48 GMT | 3 |
Im having some trouble with a compiled matlab program and a timer. heres my code. function [outputArgs] = program(inputArgs)
|
| 3d patch for a rounded corners rectangle | 15 Jul 2008 18:49 GMT | 5 |
Folks, I am trying to create a 3d rectangle with rounded corners, using patch command. So, i have like 404 points for defining a plane most of them for creating the round smooth corners.
|
| YCBCR | 15 Jul 2008 18:43 GMT | 3 |
how we take using the matlab commands the y,cb,cr values respectivelly in 4:2:0 and 4:4:0 formats . That means from a RGB Image I need the ycbcr image in the above formats.
|
| Using unique - a problem | 15 Jul 2008 18:35 GMT | 8 |
The following is the code to find the area and internal angles of a triangle. function [area,an]=trian(x1,y1,x2,y2,x3,y3); m=det([x1 x2 x3;y1 y2 y3;1 1 1]);
|
| Curve fitting using arctan | 15 Jul 2008 18:07 GMT | 5 |
I am attempting to fit an arctan curve, as a background fit, to a set of data. I've read in the help manual how to fit polynomials and even logarithmic functions, but cannot find anything on fitting an arctan graph to data. I was wondering if this is at all possible, and if so
|
| Question about "listbox" | 15 Jul 2008 18:06 GMT | 5 |
I created a simple GUI with GUIDE. It includes a listbox and a pushbutton. If I start the GUI every time the first element of the listbox seems to be selected. It seems so because the first element is marked blue.
|
| classify function | 15 Jul 2008 17:51 GMT | 1 |
[CLASS,ERR,POSTERIOR,LOGP,COEF] = CLASSIFY(...) returns COEF, a structure array containing coefficients describing the boundary between the regions separating each pair of groups. Each element COEF(I,J) contains information for
|
| Sum various ranges of vector specified by offset pairs | 15 Jul 2008 17:36 GMT | 7 |
I have an N x 1 vector (A) and I would like to calculate sums of various ranges of that vector. The ranges to be summed are defined by an M x 2 matrix (B) which holds beginning and ending indexes into the vector (A). For example the following data :
|
| Cyclomatic Complexity | 15 Jul 2008 17:20 GMT | 2 |
I have finally finished my program which imports all the data needed from a 5000 line .txt file. it takes about 6.5 seconds to do one file! I found the code metrics function from the file exchange tool box. I ran it and found that
|
| about sprintf. | 15 Jul 2008 17:15 GMT | 4 |
hi all; What can i put in my program to know : how often does message('valid characteristics of the region number%d') appear?
|
| Coloring a bar3 plot | 15 Jul 2008 16:54 GMT | 1 |
Quick (hopefully!) question: I've got a 2d matrix of numbers, Z. When I do bar3(Z) I get a nice 3d bar plot. Now, I have another 2d array the same size as Z called Y. I want to color the bars according to
|
| Handles structure | 15 Jul 2008 16:47 GMT | 2 |
This is just a general question regarding how fields are stored in the handles structure for a GUI. Why are all of the fields represented by doubles? Do the values have any specific meaning other than for some sort on indexing?
|
| matrix with matrix for each element | 15 Jul 2008 16:29 GMT | 2 |
Hi, I am trying to create a matrix which has a matrix as each element e.g.: h=[1:3]' h(1)=[1,2;3,4]
|
| Custom block | 15 Jul 2008 15:45 GMT | 1 |
I am using Simulink and I am trying to make a block that will take a 3x3 matrix and an image and do the geometric transformayion. Basically these are the only commads needed: tform = maketform('affine', T)
|