Respondida
How do I erase something I printed in the command window (to print something else instead)?
Hi, you could use the clc command to clear the whole command window: <http://www.mathworks.com/help/releases/R2011a/techdo...

más de 14 años hace | 0

Respondida
changing directory in matlab
Hi, I think this m file won't help much here since it uses the which commands to search for files with a specific name and wh...

más de 14 años hace | 0

Respondida
Correct use of uint32
Hi, idx1 is a logical vector. So the error can be raised with: logical(1)*uint32(2) To get it working, cast idx1 to u...

más de 14 años hace | 0

| aceptada

Respondida
Modulo-2 addition ?
Hi, you can use the mod command for that. Assume you like to add a and b and than do the modulo 2: mod(a+b,2)

más de 14 años hace | 0

| aceptada

Respondida
Right clicking in a dialog box
Hi, This is a bit tricky. There is a solution available which shows you how to get a context menu: <http://www.mathworks.com/s...

más de 14 años hace | 1

Respondida
How to read a text file with multiplel matrix data sets listed one after another
Hi, trz fid = fopen('sample.txt','r'); out = textscan(fid,'%s %s %s \r\n %f %f %f \r\n %f %f %f \r\n %f %f %f \r\n %f %f...

más de 14 años hace | 0

Respondida
Opening files in editor causes a "Load of Java classes failed" in Matlab R2011a under OSX 10.6.8
Hi, This can happen if you have downloaded third-party software such as EasyKrig which contains a 'message.m' file. If the thi...

más de 14 años hace | 2

| aceptada

Respondida
Excel COM Server, create Autofilter
Hi, A good way to get the function and command you need it to open Excel and let EXCEL record a macro for you. Simply click o...

más de 14 años hace | 1

| aceptada

Respondida
rounding elements in array to nearest 0.25
Hi, I think you are looking for: in = [1373.698 1385.024 1394.82 1400.436 1396.532]; %round up ...

más de 14 años hace | 4

| aceptada

Respondida
compiling GUI with folder of input text files
Hi, the path management in deployed applications is different than in MATLAB. I would recommend reading this: <http://blog...

más de 14 años hace | 0

Respondida
PREVIEW function in web application
Hi, I am not 100% sure if this works but I would try the following: # use the preview command # use figtoimstream to conv...

más de 14 años hace | 0

Respondida
What is the formula to convert uint8 image to double format ?
Hi, simply cast it as double and than divide by the maximum number of the datatype. In your case (uint8) its 255. So when your ...

más de 14 años hace | 3

Respondida
Build standalone application
Hi, you have to install a 32bit MATLAB in order to generate a 32bit application. You can't generate a 32bit applicaion out of...

más de 14 años hace | 0

Respondida
Explicit solution could not be found
Hi, this can mean # It's to complex for beeing solved symbolically # Since you have 3 equations and 2 variables it can mean th...

más de 14 años hace | 0

Respondida
integer increment on a plot axis
Hi, you can try set(gca,'ytick',0:10) To limit the y-axis to 0 to 10 do set(gca,'ylim',[0,10])

más de 14 años hace | 5

| aceptada

Respondida
Excel Reading and Writing using Matlab
Hi, I have an Excel file where the first column (A) is: 1 2 e 3 and loop over the cells and check if the ent...

más de 14 años hace | 1

| aceptada

Respondida
Using COM Servers As Workers
Hi, have a look at the actxgetrunningserver command: <http://www.mathworks.com/help/releases/R2011a/techdoc/ref/actxgetrun...

más de 14 años hace | 0

Respondida
Why do I receive this error? Error using ==> psoptimset at 297 Unrecognized parameter name 'UseParallel'.
Hi, this feature was introduced with 8a: <http://www.mathworks.com/help/releases/R2011a/toolbox/gads/rn/bre2ymp.html>

más de 14 años hace | 0

| aceptada

Respondida
Identifying duplicates and deleting duplicates
Hi, are you looking for the unique command? >> a = [1 2 2 3 1 4] a = 1 2 2 3 1 4 ...

más de 14 años hace | 0

Respondida
next button problem
Hi, I would suggest to contact the Install Support: <http://www.mathworks.com/support/contact_us/> So this should be op...

más de 14 años hace | 0

Respondida
ODE45, ODE113 How to get the step size in advance?
Hi, ODE45 and ODE113 have variable step size and this size is choosen during solving. So there is no stepsize you can get.

más de 14 años hace | 0

Respondida
editor slow: maximun number of lines?
Hi, the same question some days ago can be found here: <http://www.mathworks.com/matlabcentral/answers/13577-large-files-v...

más de 14 años hace | 0

Respondida
Matlab data extraction speed up
Hi, could you give us an example how the data is stored in the binary file? And how should the data look like in the end? ...

más de 14 años hace | 0

Respondida
Matlab CoderToolbox and GUI
Hi, this is not possible, <http://www.mathworks.com/help/releases/R2011a/toolbox/eml/gs/brtk6_j.html> C is not able to ...

más de 14 años hace | 0

Respondida
'ButtonDownFcn' - Passed parameters need to be updated
Hi, once this function handle is created the passed values are fix. You have to renew the function handle with the updated va...

más de 14 años hace | 0

| aceptada

Respondida
how we can bring turbo c program in matlab
Hi, Turbo C is really old (end of the 80s I think). Can Turbo C code be compiled with the Visual Studio Compiler? If so, you co...

más de 14 años hace | 0

Respondida
Problem loading excel file into MATLAB
Hi, are you using the Import Wizard or importdata function together with R2009b? If so, thats a known Bug. You can use xlsrea...

más de 14 años hace | 0

Respondida
Deploytool Problem
Hi, you don't have to setup anything before you are able to open the deploytool. Please check if the license work correctly t...

más de 14 años hace | 0

| aceptada

Respondida
How to calculate used memory of a m file
Like Jan said, you can't. But this is a nice tool and maybe it helps you. <http://www.mathworks.com/matlabcentral/fileexc...

más de 14 años hace | 0

Respondida
Dump a struct to an ascii delimited file
Hi, only a guess: for i=1:10 mystruct(i).filename=sprintf('test %d',i); mystruct(i).number=i; end ...

más de 14 años hace | 0

| aceptada

Cargar más