質問


Fastest recursive search for files
From this answer, I learned that dir can search recursively for files in subdirectories, and it is about 3X faster than what I h...

約3年 前 | 0 件の回答 | 0

0

回答

質問


Checking if a nested field exists in a structure
I am building a structure whose fields and subfields are nested structures. I would like to cycle through a subfield, determine ...

3年以上 前 | 1 件の回答 | 0

1

回答

質問


How to fit a common linear trend observed across multiple sensors?
Let's say I have 10 noisy sensors measuring temperature vs time, and I want to fit a linear trend which is common across all 10 ...

3年以上 前 | 1 件の回答 | 0

1

回答

質問


How to retrieve a table entry using row name?
The function anova returns a 3x5 table and I would like retreive the value from the row named Model and column named pValue. How...

3年以上 前 | 1 件の回答 | 1

1

回答

質問


Getting a command like gather to run silently
I am using the command gather many times in a loop, and it throws out the following updates each time, Evaluating tall expressi...

3年以上 前 | 2 件の回答 | 0

2

回答

質問


Do I need anything more than a db file and the Database Toolbox to access a Sybase database?
I have been given two files MyDatabase.db and MyDatabase.log file by a coworker, who said they are a Sybase database. To access ...

3年以上 前 | 1 件の回答 | 0

1

回答

回答済み
Divide a 3D shape into equal-volume subregions?
Based on the comments, my original question was too open ended, so I am answering this to bring it to a close. A simple 3D divis...

3年以上 前 | 1

| 採用済み

質問


Divide a 3D shape into equal-volume subregions?
I have a 3D shape that can be approximated with Delauny triangularization or a convex hull. I would like to divide the shape int...

3年以上 前 | 1 件の回答 | 0

1

回答

質問


Are these the same: set(0, ... and set(groot, ...
Let's say I always want graphics to appear a certain way, so I put commands to set graphic preferences in my startup.m file. I h...

3年以上 前 | 1 件の回答 | 0

1

回答

回答済み
What is the default transfer function for fitnet?
Greg, do you happe to know where in the documentation it says that tansig is the default? I can only find how to list all the ...

3年以上 前 | 1

質問


Matlab equivalent for Octave command bitunpack
I have an Octave program that I would like to turn into Matlab code. The sticking point is the Octave bitunpack command, which r...

3年以上 前 | 0 件の回答 | 0

0

回答

回答済み
Is there a function in MATLAB for detecting points inside a polyhedron?
You could use inpolyhedron from the FEX, discussed here.

3年以上 前 | 0

質問


How to get handle to legend in a specific axes?
I would like to find the handle to one legend that appears in a specific subplot, while there are a lot of other plots with lege...

3年以上 前 | 1 件の回答 | 0

1

回答

回答済み
How to migrate command history to new computer?
Here is what I figured out from this answer, in case it helps someone. At the Matlab command prompt on old computer #1, enter ...

3年以上 前 | 2

| 採用済み

質問


How to migrate command history to new computer?
I have been using Matlab 2019b on one computer, and need to install it on another. Is there any way I can migrate my command his...

3年以上 前 | 1 件の回答 | 1

1

回答

質問


Setting different properties for some line objects stored in the same handle
Let's say I have a handle h1 that contains several line objects, like so: h1 = plot(1:10, rand(10, 25)); % h1 contains 10 line ...

3年以上 前 | 2 件の回答 | 1

2

回答

質問


Accessing field data in nonscalar structure array
Let's say I have a nested non-scalar structure array, Patient(1).Vitals.weight = 185; Patient(1).Vitals.temperature = [98 96 1...

4年弱 前 | 2 件の回答 | 0

2

回答

回答済み
DOCTYPE error from xmlread
It turns out this was not an xmlread issue, and has nothing to do with AllowDoc, but instead is due to a problem with the XML fi...

4年弱 前 | 1

| 採用済み

質問


DOCTYPE error from xmlread
I have been given an XML file and am trying to read it with xmlread. If I call it either of the following ways, DOMNode = xmlre...

4年弱 前 | 1 件の回答 | 0

1

回答

回答済み
What happened to plotxx?
There is also a plotxx in the File Exchange.

4年弱 前 | 0

回答済み
Is it possible to have a zero value in the pie-chart data in MATLAB 7.6 (R2008a)?
If you are doing this to plot a pie which is missing a slice, see here ('Partial Pie').

4年弱 前 | 0

回答済み
"The handle is invalid" when running an exe
Passing along the solution from here in case it helps someone: Due to the popup window that the exe generates, I needed to add a...

4年弱 前 | 0

| 採用済み

質問


"The handle is invalid" when running an exe
I would like to run an executable from the Matlab command line. However when I try system('MyProgram.exe') I get the error, U...

4年弱 前 | 1 件の回答 | 0

1

回答

回答済み
How can I move my MATLAB Path from my old version of MATLAB over to a new version?
Upgrading to R2019b from R2019a, I copied my personal directories into the new pathdef.m file using the R2019b matlab editor and...

4年弱 前 | 0

質問


How to match an image subset in an image?
Let's say I have image #1, and a second smaller image #2 containing some of the pixels from image #1. The pixels in image #2 wer...

約4年 前 | 2 件の回答 | 0

2

回答

回答済み
How to match an image subset in an image?
This is slow (15 seconds on my machine) but it seems to return the expected location, % Create a mask for selected pixels in ...

約4年 前 | 0

| 採用済み

質問


Import a Photoshop selection into Matlab
Let's say I have an image that I open in Photoshop, and I make a selection of a region, for example with the lasso tool. I would...

約4年 前 | 0 件の回答 | 0

0

回答

回答済み
Intensity profile line with interpolation
You can specificy the number of points, n, in improfile and also choose the interpolation method such as bicubic (avoid nearest ...

約4年 前 | 2

回答済み
how to get matlab 2019b
Now it's out; get it here.

約4年 前 | 1

質問


Excluding Hough transform artifacts at 45 and -45 degrees
I am following steps in this example to find lines in my image, which contains a lot of nearly-horizontal lines. The Hough trans...

約4年 前 | 1 件の回答 | 0

1

回答

さらに読み込む