First
|
Prev |
Next
|
Last
Pages: 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214
Running the generated M-file from cftool Hi, I have been trying to run the generated M-file in order to reproduce the original Curve Fitting session, however I have received the following message: "Input argument "SR_Rheo_SSF_SR_CWMD4" is undefined. SR_Rheo_SSF_SR_CWMD4 is one of my cariables of the data set and it is available on the workspace. oth... 1 Mar 2010 20:58
local maxima lines:MATLAB CODE "Pavle Boskoski" <pavleb(a)freemail.com.mk> wrote in message <g073un$l12$1(a)fred.mathworks.com>... There was a small error in my previous script: r=cwt(sig,'haar',15000); should be: r=cwt(sig,a_coefs,'haar'); where a_coefs are the scales on which you would like to perform the CWT P... 1 Mar 2010 18:43
Circular or polar plots in matlab problem.. Hey all; I have a 1 x 360 array of a function I have computed in one degree increments from a model in the lab. I want to use matlab to display this in a circular plot to show varying intensity with angular displacement, however I cannot seem to get my function to work properly with the polar plot function; I s... 2 Mar 2010 15:47
how to use textscan in a for loop with header lines increasing dpb <none(a)non.net> wrote in message <hmh46l$rqu$1(a)news.eternal-september.org>... My guess is that you're not accounting that the file pointer isn't moved from one call to textscan to the next so you're skipping lines from the last location read rather than from the first this way. Why not simply... 1 Mar 2010 20:58
How to interpolate the coordinates of a vector on an image usingmatlab? Nicola wrote: For instance, if I have got a vector describing a rectangle xy=[165 88; 401 88; 401 278; 165 278 on an image. Can i obtain the following vector [165 88;166 88; 167 88;...;400 88; 401 88; 401 89;...;401 277; 401 278;400 278;...;164 278;165 278;165 277;...;165 87 using a Matlab's inbui... 1 Mar 2010 15:16
Deploytool help please: Can't get standalone Windows GUI without DOS window Hi Everyone, I have created a matlab GUI for my program and would like to deploy it as a stand alone application for Windows. - Unfortunately, a DOS window appears when I use the Deploytool to do this. Is there a way I can create a standalone windows version that doesn't have this DOS window come up? - As it stan... 30 Mar 2010 12:45
how to use textscan in a for loop with header lines increasingat each iteration Matteo wrote: I am a beginner user. Any help with this would be greatly appreciated. .... I would like to use textscan, rather than cleaning it up in excel, However, my for loop below returns a cell with empty matrices. I think my syntax is incorrect but I do not get an error message. for k... 1 Mar 2010 15:16
how to use textscan in a for loop with header lines increasing at each iteration I am a beginner user. Any help with this would be greatly appreciated. I am given an ascii text dump from a service company. The file contains 176 vectors with 501 samples each in this nasty format: Header 1 - vector 1 samples 1 through 10 samples 11 through 20 .... samples 491 through 500 sample 501 Header... 1 Mar 2010 15:16
output selected number of rows of a sparse matrix to a text file? singlepoint wrote: Hey guys, I have to output selected number of rows of a sparse matrix (full sparse matrix) to a file? .... Assuming the subset isn't absolutely humongous, simply save the subset w/ full() and write it. -- ... 1 Mar 2010 15:16
FFT Scale Factor Hi, have a doubt. I want to calculate a FFT with a scale factor and I don't know how to do it with Matlab. For example this case: f=100; landa=0.523; N=1000; k=2*pi/landa; x=-N/2+1:N/2; y=-N/2+1:N/2; [xx,yy]=mesh(x,y); im1=ones(N,N); obj=exp(i*k*(xx.^2+yy.^2); im2=im1.*obj; %% And I want to c... 2 Mar 2010 06:46 |