回答済み
For Loop answer into a vector
b = 10; d = 10; E = 207E9; p = -8000; I = (b*d^3)/12; l = 227; x = linspace(1,226,20); % not necessary, but good: y = ...

4年以上 前 | 1

| 採用済み

回答済み
Please Help, I am getting this error "Index in position 1 is invalid. Array indices must be positive integers or logical values."
If the result of calling rand is small (less than 1/255) then round(rand*255) will be 0, and 0 isn't a valid index. Consider us...

4年以上 前 | 0

| 採用済み

回答済み
How to use stackedplot on desired UIAxes at App Designer
A stackedplot doesn't go in an axes, it's 'equivalent' to an axes in the sense that it goes in a figure or panel or tab. You cou...

4年以上 前 | 0

| 採用済み

回答済み
How can I display a list box item as a string in a label in AppDesigner?
Yes this is possible. You can create a listbox, and a label, and assign a callback to the listbox that sets the label. In gener...

4年以上 前 | 0

| 採用済み

回答済み
discreate heatmap plot over an existing image
The difference here (I'm guessing) is that your overlay has a small number of pixels, but the overlay in the example has a numbe...

4年以上 前 | 0

| 採用済み

回答済み
How to add different range in x-axis plot?
You can't have a 'broken' x axis, but you can fake it in several ways, here are a couple. One way is to fake the ticks: clf;ho...

4年以上 前 | 1

回答済み
Remove whitespace around exported (saved) figure via imwrite
If/when you upgrade to R2020a+ consider trying exportgraphics(gca, ...) which trims images nice and tight and may be easier than...

4年以上 前 | 0

| 採用済み

回答済み
How to plot animated graph from a matrix of data?
In some sense, you are going to need to plot each row and capture each frame, as you want each frame of the movie to contain new...

4年以上 前 | 0

回答済み
How to plot three subplots on the same axis?
There are a few options better than subplot. The easiest thing (as @Mathieu NOE mentions in the comments) is to use stackedplo...

4年以上 前 | 5

| 採用済み

回答済み
Is it possible to colour a scatter3 according to its mean and maximum value
You can color the points in a scatter3 by passing in a vector specifying the value you'd like to map onto color as the 5th argum...

4年以上 前 | 0

回答済み
Trying to retrieve and display the initial value of an input
I think you just flipped it, if you want to set a equal to the initial value of x0, do a=x0 demo(5,10) function demo(x0,x...

4年以上 前 | 1

| 採用済み

回答済み
How can I graph an average and individual participant data?
It's a little difficult to visualize what this looks like, but here's what i took away from looking at your code you have a thi...

4年以上 前 | 0

回答済み
scatter not ploting matrix
Yes this functionality was just recently introduced in R2021a The relevant section from the release notes reads: Scatter Plo...

4年以上 前 | 0

| 採用済み

回答済み
Why do I receive "Index exceeds the number of array elements (1)" ?
You wrote: For some background, m and t are both defined already in my workplace and they are both vectors. But you redefine...

4年以上 前 | 0

回答済み
Drawing a line to divide two parts of a curve
You can draw a vertical line very easily with xline area works well for filling a part of the curve x=linspace(-3,3,100); y...

4年以上 前 | 0

回答済み
51 uniformly-distributed points
You can create uniformly (linearly) distributed values with the linspace function: x = linspace(0, 5, 51) Alternatively, you m...

4年以上 前 | 0

| 採用済み

回答済み
array indexing returns empty row vector while attempting to locate index corresponding to only certain array values
This is an issue of floating point arithmetic, another way to state the problem is: (.1+.2)==.3 What? How can those not be equ...

4年以上 前 | 0

| 採用済み

回答済み
Dealing with Data Structures
I think in general it's better if your struct is an array rather than using names of fields in the struct as an array, but if yo...

4年以上 前 | 0

回答済み
Nested for loop for multipication
I think the question is really how you store your total values (you didn't store them in your snippet, so I'm not sure how you p...

4年以上 前 | 0

| 採用済み

回答済み
fill missing point in data (x y z 3 columns data)
You can use meshgrid to make x and y grids, and then ismember with the rows flag to find which pairs of x and y are missing: % ...

4年以上 前 | 0

回答済み
How to locate the plotting title above the legend, where the legend is placed "northoutside"?
You can put a title on the legend, but I think you just want a master title for everything. You can do that by placing your axes...

4年以上 前 | 2

| 採用済み

回答済み
How to relate data to other data from excel in MatLab?
In general, it's better to think of it not as Height(Name1), but as Height(Species=="Name 1"), this extends to all sorts of data...

4年以上 前 | 0

回答済み
How do I use output values from a function to plot those values in a script
I think what you're looking for is: [t,~,v] = rocket_euler(30,20) plot(t, v, '.-','color',[0 1 0],'Marker','x','markersize',15...

4年以上 前 | 0

| 採用済み

回答済み
select one item between two List Box
How about just using the callback of one to deselect the other: % Set up some example listboxes: u = uifigure; lsta = uilistb...

4年以上 前 | 0

| 採用済み

回答済み
graph with two formulas
You can make the error bars with the errorbar function, but your excel file doesn't appear to include data about error... a=r...

4年以上 前 | 1

回答済み
Call Function from .m file in command
@L McKeehan - perhaps the most common reason for this is that the function is not on MATLAB's search path. When you try to run a...

4年以上 前 | 1

| 採用済み

回答済み
What should be the distance between the two cameras?
This isn't a very MATLAB-y answer, but the lenses in stereo cameras typically try to replicate the distance between the eyes (ac...

4年以上 前 | 0

回答済み
Trying to change columns in a Matrix
Specifying rows and columns makes MATLAB point to rectangles: a(1:2,1:4) refers to rows 1 and 2, columns 1 through 4, i.e. MATLA...

4年以上 前 | 1

| 採用済み

回答済み
Showing the equation of the best fit lines per graph
Are you struggling with how to get the text? or how to display it on the chart? Here I put them in the legend, and also added...

4年以上 前 | 0

| 採用済み

回答済み
Get ticks to lay across colorbar
The unit for TickLength is peculiar. If you check out how it's documented on the colorbar page it says: Tick mark length, speci...

4年以上 前 | 0

| 採用済み

さらに読み込む