回答済み
Segmented Sinewave
Okay, I'm still not entirely sure what you mean, but based on your response to one of the questions, it seems like you just want...

約15年 前 | 0

回答済み
GUI closing automatically?
I would assume you have a <http://www.mathworks.com/help/matlab/ref/close.html |close|>, <http://www.mathworks.com/help/matlab/r...

約15年 前 | 2

| 採用済み

回答済み
Cursor line
I posted a similar solution <http://www.mathworks.com/matlabcentral/answers/1758-crosshairs-or-just-vertical-line-across-linked-...

約15年 前 | 1

回答済み
How to rename a bunch of files in a folder
Here's an example: % Get all PDF files in the current folder files = dir('*.pdf'); % Loop through each for id ...

約15年 前 | 12

回答済み
crosshairs or just vertical line across linked axis plots
This may get you started: function vertical_cursors set(gcf, ... 'WindowButtonDownFcn', @clickFcn, ... 'Window...

約15年 前 | 10

| 採用済み

回答済み
crosshairs or just vertical line across linked axis plots
Does the answers from this <http://www.mathworks.com/matlabcentral/answers/1308-cursor-line question> help?

約15年 前 | 1

回答済み
Simple visualization of a 3-d array (volumetric?)
You can use <http://www.mathworks.com/help/matlab/ref/scatter3.html |scatter3|> to view "voxels" in 3 dimensions, but in your ca...

約15年 前 | 0

回答済み
How to Plot a 3-d matrix, so I can see the image it represents?
Perhaps you can read up on <http://www.mathworks.com/help/matlab/visualize/f5-8666.html Volume Visualization Techniques>. There'...

約15年 前 | 0

| 採用済み

回答済み
View text in editor without saving to file
Depending on the release of MATLAB, you may be able to use the unsupported editor API through the editorservices package. h...

約15年 前 | 1

回答済み
Sending e-mail
I was able to do it by changing the Body property (instead of HTMLBody): mail.Body = sprintf('This is line one.\nThis is li...

約15年 前 | 1

| 採用済み

回答済み
Simulink basics
Take a look at the <http://www.mathworks.com/academia/student_center/tutorials/simulink-launchpad.html Simulink Tutorial launchp...

約15年 前 | 2

回答済み
Trouble importing data from excel file using xlsread
What do you get when you type exist('C:\Documents\oput021m.xlsx', 'file') Does it return 2? If 0, then you mistyped the ...

約15年 前 | 2

| 採用済み

回答済み
Which colour does Matlab use for strings?
On my MATLAB, the color for the strings is [160, 32, 240] (in uint8). You can check it from your <http://www.mathworks.com/help/...

約15年 前 | 1

| 採用済み

回答済み
Surface fitting toolbox
There are a couple of ways you can do this. 1. From the "Fit" menu, select "Save to Workspace...". This will allow you to sav...

約15年 前 | 1

| 採用済み

公開済み


Fancy Menus
Jiro's pick this week is menubar by Dirk-Jan Kroon. I'm honestly perplexed that his files have not been...

約15年 前

Thumbnail

回答済み
Can I create a momentary command using the GUI pushbutton?
One way is to make use of <http://www.mathworks.com/help/matlab/ref/figure_props.html#WindowButtonUpFcn WindowButtonUpFcn> prope...

約15年 前 | 0

回答済み
GUI for keyboard pressed representing the push button
I assume you are using GUIDE to create your GUI. In that case, create a <http://www.mathworks.com/help/techdoc/ref/figure_props....

約15年 前 | 3

回答済み
How do I keep a handle and use FINDOBJ to get a handle again?
What Matt and Matt said. Plus, I would emphasize again: Never ever ever use the actual number to refer to the handle. Instead...

約15年 前 | 0

回答済み
[DISCONTINUED] Wish-list for MATLAB Answer sections.
A way to automatically scroll to the most recent answer/comment/edit. For example, this question has many, many answers and comm...

約15年 前 | 5

回答済み
Display the different size of preview image from that of the captured images.
What you basically want is a preview window that is smaller. You can achieve that by forcing the figure (and axes) to be a small...

約15年 前 | 1

| 採用済み

回答済み
Does an External Parallel Computing Service Exist
You may be interested in learning about <http://www.mathworks.com/programs/techkits/ec2_paper.html "Parallel Computing with MATL...

約15年 前 | 3

回答済み
How to change the background of picture using MouseEnter event??
I may not have the VB part well coded, but this should get you started. function ln = formTest NET.addAssembly('Syst...

約15年 前 | 0

回答済み
3D Plot with large data
Another thing you could try is to do some interpolation of the data and plot at a lower resolution. As Oleg points out, there's ...

約15年 前 | 3

回答済み
no figure toolbar
I'm not sure if you're asking how to not display the toolbar by default, or asking why your figure does not display the toolbar ...

約15年 前 | 0

回答済み
Error while reading files from a directory
It's probably the directory. Are the files in a different directory than where you're running from? Store the directory name and...

約15年 前 | 0

| 採用済み

回答済み
error in installation(product configuration notes)
Windows 7 is not supported in MATLAB R14: <http://www.mathworks.com/help/releases/R14/base/install/pc/ch1_in17.html#55600>

約15年 前 | 0

回答済み
How verify that a RadioButton is Checked?
Use <http://www.mathworks.com/help/matlab/ref/uicontrol.html |uicontrol|> (with style 'radiobutton') to create a radio button. ...

約15年 前 | 2

| 採用済み

公開済み


Create Multi-Column Plot Legends
Brett's Pick this week is "columnlegend," by Simon Henin. NOTE: Functionality similar to this File...

約15年 前

Thumbnail

回答済み
Locating Peaks Naively
There are a few files on the File Exchange for peak finding. I wrote a blog post about one of them <http://blogs.mathworks.com/p...

約15年 前 | 1

回答済み
Subtracting the next element on a vector? Basic
A = [20, 8, 4, 1]; B = -diff(A);

約15年 前 | 6

| 採用済み

さらに読み込む