回答済み
Error in function streamline: interp1 sample points must be unique.
The issue you are having is the form of your X and Y data you are providing as input to streamline. The streamline doc page says...

3年弱 前 | 1

回答済み
Join Multiple Tables horizontally (can have duplicate variables) in which some tables might be empty.
If your goal is to simply concatenate two tables, such that the first row of each table is combined into the first row of the ou...

3年弱 前 | 0

回答済み
how to read serial pixel data into matrix without having to perform transpose operation
I can't think of any operation that can scale and transpose the data simultaneously, short of writing your own MEX function, whi...

3年弱 前 | 0

回答済み
timer doesn't work
@Walter Roberson already pointed you to the documentation on how to Share Data Between Workspaces, which provides several ways t...

3年弱 前 | 0

| 採用済み

回答済み
Filled contour plot on other planes (X-Z or Y-Z)
contourf works fine when used with an hgtransform, except it is not updating the automatically selected limits correctly, so you...

3年弱 前 | 1

| 採用済み

回答済み
String convertion to date
Note, I don't speak Spanish, so I'm not sure of the proper user of "de" and "del", so this answer may need to be adjusted. I su...

3年弱 前 | 1

回答済み
Locking the Legend even if the object is deleted
As @Bjorn Gustavsson suggests, your best bet is to create proxy objects that are represented in the legend, but are not visible ...

3年弱 前 | 0

| 採用済み

回答済み
How to close a figure used for keypress function?
As @W. J. stated, your code seems to run fine if you just remove the call to UserFeedback from after the call to waitfor. Alter...

3年弱 前 | 0

| 採用済み

回答済み
How to use multiple colorbars on one figure?
There are two concepts that I think you may be confusing: The colormap which is a set of colors used to map from data to color....

3年弱 前 | 2

| 採用済み

回答済み
Figure Subplot Tiles Customization
I don't see an attached picture, but I think I understand what you are trying to do. First, I recommend trying tiledlayout inst...

約3年 前 | 1

| 採用済み

回答済み
Write a row and column vector as matrix index
Is meshgrid or ndgrid what you are trying to do? [X,Y] = meshgrid([4 5 3],[4 5 3]) [X,Y] = ndgrid([4 5 3],[4 5 3]) After call...

約3年 前 | 1

回答済み
imagesc or equivalent with datetime as x axis.
If you are using MATLAB R2023b or newer: Starting in MATLAB R2023b, you can now work with images on datetime rulers natively. ...

約3年 前 | 1

| 採用済み

回答済み
connect nodes (coordinates of a matrix rx3) with a line
You can specify the LineWidth when you call the plot command. data = readmatrix('data.txt'); x = data(:,1); y = data(:,2); s...

約3年 前 | 0

回答済み
How do I save plots calculated by gamultiobj separately?
Unless the code that is doing the computation is explicitly leveraging some form of parallel processing, the code that exports f...

約3年 前 | 0

| 採用済み

回答済み
sgtitle disappearing when getframe saves frame for animation
When I run a slightly modified version of your code, the resulting image includes the "main title". I tested in R2022b. Here is...

約3年 前 | 0

| 採用済み

回答済み
How to create a callback function to start and stop recording EMG Button in real time for Delsys Trigno.
I didn't dig into your code specifically, but here is code for a simple app with a timer and a start/stop button that shows how ...

約3年 前 | 0

回答済み
Adding transparency to one contour plot based on another contour plot
Good news! Starting in MATLAB R2022b, creating transparent contour plots is supported out-of-the-box in MATLAB. You can adjust ...

約3年 前 | 2

回答済み
How to plot data from cells?
When you say "plot the data", can you provide a little more information about kind of picture you are trying to create? What dat...

約3年 前 | 0

| 採用済み

回答済み
class1 as property of class2, class1 property initialization?
In your definition of mainClass you created a property with the name class1, not the type class1. This is what you want: class...

3年以上 前 | 0

| 採用済み

回答済み
How does one disable the menu that appears when one hovers on a plot?
You can set the Toolbar property on the axes when you create it. ax = axes; ax.Toolbar = []; If you want that to be the defau...

3年以上 前 | 0

回答済み
bubblelegend doesn't work (2021b)
bubblelegend was released in R2020b, so it should work in R2021b. My guess is you have something wrong with your MATLAB path. Tr...

3年以上 前 | 0

| 採用済み

回答済み
Running files in folders in loop.
You can use the dir command to get a list of the files/folders. d = dir('**'); Once you have the list, you can loop through th...

3年以上 前 | 0

回答済み
Area integration with the point where the mouse selected
You can use ginput to click and select points from a figure window. Once you've got the points, "integrating the area under the...

3年以上 前 | 0

回答済み
Setting the name of the Matlab Command Window
No, there is no way to modify the title of the MATLAB command window.

3年以上 前 | 1

| 採用済み

回答済み
Pushbutton callback not working
This looks like the same question/issue you were having in this other post. I've responded there.

3年以上 前 | 0

| 採用済み

回答済み
pushbutton callback doesn't work
I think at a high level the issue you are having is that you are missing a signal to your script that the user has pressed the O...

3年以上 前 | 1

| 採用済み

回答済み
How to plot spatial data
As the error says, lat and lon need to be the same size. Based on the shape of your variables, I suspect you need to use meshgr...

3年以上 前 | 1

回答済み
Function, dot, help me for solution
This line has the error: sm=@(W) v*N*L*R/(4*W.*(L/C)^2); Specifically: W is an anonymous function, so you can't do 4*W. That i...

3年以上 前 | 1

| 採用済み

回答済み
How can I the show the solution/results in table form?
There is still some polish you probably need to make, but here is one approach to displaying your results in a table: a = 0; b...

3年以上 前 | 0

回答済み
Is it possible to use gscatter within app designer?
What release of MATLAB are you using? Starting in R2019b, gscatter should work just find within App Designer, but you need to m...

3年以上 前 | 0

| 採用済み

さらに読み込む