Answered
FOR loop control structure
IMO: The description of <http://www.mathworks.se/help/matlab/ref/for.html for, Execute statements specified number of times>, is...

11 years ago | 0

Answered
Interesting confusion in matlab - Number format
On R2013a,64bit,Win7 I get >> j_values/time_interval ans = 5077 5078 5079 5080 ...

11 years ago | 1

Answered
who to contact at Mathworks when they post an APP taken from my site?
*I assume* that you refer to an app in the <http://www.mathworks.com/matlabcentral/fileexchange/ File Exchange> (FEX). <http...

11 years ago | 1

| accepted

Answered
Find row with NaN in it.
A start: is(:,1) = X(:,1)==3; is(:,2) = X(:,2)==8; is(:,3) = isnan( X(:,3)); all( is, 2 ) which returns...

11 years ago | 0

| accepted

Answered
how to generate 10 second delay in matlab progam?
See the <http://www.mathworks.se/help/matlab/ref/pause.html documentation> as soon as possibly. And later see <http://www.mathwo...

11 years ago | 2

| accepted

Answered
help with plotting date/time with data
Try this: %% date = '26/03/2013 17:23:24'; d1 = datenum(date); date_new =datestr(d1,'dd/mm/yyyy HH:MM:SS')...

11 years ago | 0

| accepted

Answered
Help with large start up error R2014a.
_"'workspacefunc' not found."_ &nbsp The Matlab search path is corrupted. *First, read the documentation on the search path....

11 years ago | 0

| accepted

Answered
Break Points without a function
With R2013a it's simple, just set a breakpoint and click [Run]. On the other hand I would have answered: add the line fu...

11 years ago | 0

| accepted

Answered
Best way to read large text files (over 2 mil rows) into matlab?
The file consists of many blocks of header-lines followed by numerical data(?). There is no high-level function in Matlab, which...

11 years ago | 0

Question


How to hinder ongoing spamming?
Ongoing spamming from * jib937@yahoo.in 166 question asked, some of which I closed (+another 21 in the last 20 minutes) (and ...

11 years ago | 2 answers | 2

2

answers

Answered
How can I make urlread faster / problem using urlread2?
With R2013a,64bit,Win7 and a "fast" Internet connection. >> tic, A=urlread('http://www.mathworks.com'); toc Elapsed tim...

11 years ago | 1

Answered
Reading specific data from formatted txt files - looks very dificult
I disagree, it's not that simple. Ok, it depends. I've chosen to divide the task into two steps # Read the data-file and p...

11 years ago | 1

| accepted

Answered
How to import data from files containing a mix of numbers and strings into a Matlab cell array?
I converted your image to text, replaced the "," and saved the result in a text-file. The resulting file is straightforward to r...

11 years ago | 0

Answered
Read a string from text file returning strange characters
I guess that you see a "problem" with the encoding of your file. I guess it's UTF-8 and that "" is a distorted BOM-character....

11 years ago | 2

| accepted

Answered
How to display customised tip in Debug editor mode?
Not a documented feature but search <http://undocumentedmatlab.com/?s=tooltip Undocumented Matlab>

11 years ago | 1

Answered
Why is xlsread not working with text file? Documentation says it should work with other any file that Excel can open.
My system: R20113a, 64bit, Win7, Excel2010 &nbsp My first trial resulted in Error using xlsread (line 247) Fi...

11 years ago | 0

| accepted

Answered
How can I clear the search path to test software I want to distribute?
AFAIK: The only way is to # remove all user folders from the search path # add the user folders afterwards There are a c...

11 years ago | 0

Answered
How to import data from files containing a mix of numbers and strings into a Matlab cell array?
Matlab doesn't honor comma as decimal separator. See <http://www.mathworks.com/matlabcentral/answers/57276#answer_69283>

11 years ago | 0

Answered
How to test cell array membership
Search |ismember|

11 years ago | 1

| accepted

Answered
is there a mat file loading error or memory leak in matlab 2013a?
This little experiment with R2013a,64bit,Win7,8GB _*doesn't*_ reproduce your problem. >> tic, cssm, toc Name ...

11 years ago | 0

Answered
How can I estimate the time required by textscan and the size of the output?
I made an experiment with R2013a, 64bit, Win7, 8GB RAM, 9GB page file size and a mechanical HD * created a file with _"6 colu...

11 years ago | 0

| accepted

Answered
Strange Parse Error for Superclass; MATLAB Version Problem?
_"I know the code was written using 2013b, and I am currently stuck with 2013a."_ &nbsp That seems to be the reason. I don't...

11 years ago | 0

Answered
Need to find files in a dir structure with similar but not identical names
An alternative D = dir( fullfile( pathname, '*Nominal.xls' ) ); for jj = 1 : length(D) filespec = fullfile(...

11 years ago | 0

Answered
how to make the best use of memory when running MATLAB.?
Try >> e = nchoosek((1:7*7)',24); which returns Error using nchoosek (line 120) Maximum variable size allo...

11 years ago | 0

Answered
How to extract block matrices along the diagonal entries without looping?
Hopefully, I understood the task better this time. * This function takes a bit less than three seconds to run on my old de...

11 years ago | 1

| accepted

Answered
How to extract block matrices along the diagonal entries without looping?
This function takes 3 seconds on my machine and I guess less than half of that on the machine of Image. function S ...

11 years ago | 1

Answered
File names with spaces used as command line arguments
This should work at least on Windows commandStr = 'bertini paramotopy.input "/Users/my folder/start"'; [status,resul...

11 years ago | 0

Answered
wait for process in matlab2014a
See <www.mathworks.se/help/matlab/ref/system.html system, Execute operating system command and return output> ... stat...

11 years ago | 0

| accepted

Answered
dlmwrite/csvwrite cannot open file error
|dlmwrite| is a function written in m-code. Every time you run |dlmwrite| it opens and closes the file. * 'Date_1/4/2011.csv...

11 years ago | 0

| accepted

Answered
Duplication of M-files in my matlab directory
It is probably the auto-save-files you see (as indicated by Geoff Hayes). There is an Autosave entry in the preferences menu. ...

11 years ago | 0

Load more