First
|
Prev |
Next
|
Last
Pages: 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
Number Plate Extraction Please HELP Hello everybody I've been working in Number Plate Recognition and i have managed to detect the number plate so far. but the thing is after using the hough transformation i cant extract the number plate region. can anyone please guide me with it?? here is my code up to now [code] clear; im=imread('goood.jpg... 13 Jul 2010 04:20
Animating plots Dear all, Can anybody suggest a way to animate the plots at each j step for my code. I have tried to use the set(obj_handle,'YDataSource','varname') but cannot get it to work % The Beam Scheme % clear all variables from the memory clear all % close all the figures close all load('Analyticaldata.mat')... 10 Jul 2010 16:00
remove duplicate rows in sparse matrix SORTROWS on sparse matrix is definitively a consuming task, 6 minutes for matrix of size 100 thousands. a=sprand(1e5,1e5,1e-4); tic; b=sortrows(a); toc Elapsed time is 361.659520 seconds. Bruno ... 10 Jul 2010 09:25
help: stran cell array Hi There, I cannot menage to convert an array cell into double. I'll expain you better. I imported a txt file of two coloums, the first is the problematic one, it looks like this: S 75 S100 S 50 S 1 S128 etc.. Some elements have a space, some two spaces some none. While importing I used textread and thi... 11 Jul 2010 10:28
Reading Serial data through Simulink Input Packet Hi I'm trying to read serial data from a PIC microcontroller to MATLAB. In m file environment everything is ok. But when it comes to Simulink everything is out of control!!! I tried Instrument Control toolbox.It reads the data but in External mode it doesn't show anything. So I checked the "Input Packet Block" in ... 12 Jul 2010 05:14
Adaptive Neural Network Hi all, I am trying to develop an Adaptive Neural Network, which has 4 inputs and one output. The network should predict for next year (365 days). Training data sample : 4383 Testing data : 365 I have used newfftd function as follows: net = newfftd(pn,tn,[0 1], 5) % pn : normalized input patterns, [-... 19 Jul 2010 06:58
remove duplicate rows in sparse matrix The SORTROWS command seems to accept SPARSE matrix, but it is very slow possibly because of slow ROW accessing I mentioned earlier. In any case, I dig out one of my implementation of HEAPSORT below. With this code you could have few more possibilities to play around with (reverse column/row, inplace mex implementati... 10 Jul 2010 07:17
identification toolbox transfer function Hi i want to identify the parameters of a transfer using the identification toolbox. My transfer function is characterized by 3 real zeros and 2 couples of complex conjugate poles. In the identification toolbox, i can choose at most a transfer function with 1 zero and 1 complex conjugate pole. Is there a way to inse... 14 Jul 2010 05:30
gravity help i have a program that shows floating redballs i need a matlab program that would include gravity in this if you could change it to be the apportion answer i would be very great full %redball.m classdef redball < handle properties x; % x position y; % y position vx; % velocity in x vy... 10 Jul 2010 07:17
remove duplicate rows in sparse matrix "Ross Anderson" <rpa5nospam(a)cornell.edu> wrote in message <i180dd$sid$1(a)fred.mathworks.com>... Hi all, I have Ax=B where A and B are sparse. I want to reduce this so any row ax=b is unique, but I don't have the resources to make A and B full first. If I could, I could say Afull = [full(A) full(B)]; ... 10 Jul 2010 06:13 |