Beantwortet
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 = ...

mehr als 4 Jahre vor | 1

| akzeptiert

Beantwortet
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...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
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...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
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...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
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...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
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...

mehr als 4 Jahre vor | 1

Beantwortet
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...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
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...

mehr als 4 Jahre vor | 0

Beantwortet
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...

mehr als 4 Jahre vor | 5

| akzeptiert

Beantwortet
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...

mehr als 4 Jahre vor | 0

Beantwortet
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...

mehr als 4 Jahre vor | 1

| akzeptiert

Beantwortet
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...

mehr als 4 Jahre vor | 0

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

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
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...

mehr als 4 Jahre vor | 0

Beantwortet
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...

mehr als 4 Jahre vor | 0

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

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
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...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
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...

mehr als 4 Jahre vor | 0

Beantwortet
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...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
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: % ...

mehr als 4 Jahre vor | 0

Beantwortet
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...

mehr als 4 Jahre vor | 2

| akzeptiert

Beantwortet
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...

mehr als 4 Jahre vor | 0

Beantwortet
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...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
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...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
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...

mehr als 4 Jahre vor | 1

Beantwortet
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...

mehr als 4 Jahre vor | 1

| akzeptiert

Beantwortet
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...

mehr als 4 Jahre vor | 0

Beantwortet
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...

mehr als 4 Jahre vor | 1

| akzeptiert

Beantwortet
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...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
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...

mehr als 4 Jahre vor | 0

| akzeptiert

Mehr laden