Beantwortet
Undefined operator '>=' for input arguments of type 'cell'.
you can adust it to take out the cell using cell2mat() function or quick cell indexing using the curly brackets {} can do the tr...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
Previous Value of Numeric Edit Field
I think thats almost what you'd want do have and store prevvalue during during successful calculation. Previousely in GUIDE an...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
How to set a scale in a figure (similiar to Google Maps)
I don't understand what you're doing with that line to check baseline. I'll continue to read that however here is a quick scale...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
Plots combining to produce one single plot
What i see is that you have a hold on and you didn't turn it off or designate a new plotting window/figure. Such athat dependin...

etwa 4 Jahre vor | 1

| akzeptiert

Beantwortet
Making a histogram from a struct
I'm not sure what the rest of your dataset looks like unless you are looking to do a histogram of 7 points. However this snippe...

etwa 4 Jahre vor | 0

Beantwortet
i got index exceeds matrix dimensions.??
You should put a breakpoint at that line and then check the dimensions of the curs variable. without running your code and with...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
Replotting Data vs. Storing Plots/Images
I think the answer would be dependent on how many points are in each line and the size of the images you're going to be pulling ...

mehr als 6 Jahre vor | 0

Beantwortet
How to create a checkerboard matrix without inbuilt function.
There are much easier ways to do this than nested for loops, reshape is readily available. if you *must* do it with for loops y...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
does someone know if it's possible to have popupmenu in inputdlg?
Absolutely you can, however its not as straight forward as inputdlg() or questdlg(). you'll want to look at the example here: ...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
How can I change the LSBs of consecutive elements of an array?
you could use bitand() a = [23, 255, 67, 89, 45, 90, 34, 12]'; n=3; b = bitand(a ,255-n,'uint8') disp(dec2bin(a)) di...

fast 7 Jahre vor | 0

Beantwortet
import multiple spreadsheats at once (.xlsx files)
well first you'll want to get away from generating variables in that fashion as you'll basically have A400 or more which is hard...

fast 7 Jahre vor | 0

Beantwortet
Looking for a word in a 2D array
I would take a look at the function strfind(), and lower() or upper(). strfind() will return the starting index value of the ...

fast 7 Jahre vor | 0

Beantwortet
Project 3D points to a surface
you could try something like this. my curve and fit method is probably different however what you can do is use find() to deter...

fast 7 Jahre vor | 1

Beantwortet
Can I match data from several find functions?
what you should do is get rid of the find() for each parameter filter. keep it as a logical and then you can directly use the l...

fast 7 Jahre vor | 0

| akzeptiert

Beantwortet
How to average plots that differ in x and y data?
you can do something like x1 = 0:.01:4; x2 = 0:.03:5; x3 = 0:.02:6; y1 = sin(3*pi*x1); y2 = sin(3*pi*x...

fast 7 Jahre vor | 0

Beantwortet
How to get the central data of a matrix?
you'd use the parameter 'same' in the convolution function x = [0 1 2 3 4 5 4 3 2 1 0] conv(x,[0 1 0],'same') otherwise ...

fast 7 Jahre vor | 0

| akzeptiert

Beantwortet
Change axes limits interactively
you can try something like this, which really depends on how you want the user to input the different limits function uiexa...

fast 7 Jahre vor | 1

| akzeptiert

Beantwortet
error using randi: size inputs must be scalar
you actually want to do for n=1:4 a{n}= randi(10,n)-1; b{n}= randi(10,n)-1; fprintf('n = %d:\n', n)...

fast 7 Jahre vor | 0

Beantwortet
How can I plot mean +/- 1 standard deviation for every data point in my dataset ?
have you looked up the function errorbar()? it should get you what you'll need

fast 7 Jahre vor | 0

Beantwortet
searching through RNA sequence for a string of characters
so, do you store the full compliment data in an array such that you can %gen dummy data comp = 'AGCT'; list = comp(ran...

fast 7 Jahre vor | 0

Beantwortet
Outputting gyroscope data to array
you're overwriting it with the p(n) as n only goes from 1 to 10 again and again. you'll have to increment p(#) beyond n or mult...

etwa 7 Jahre vor | 0

Beantwortet
how to plot normalized column vs another colomn
must be missing something as you have it right there plot("your other column",i./max(i),'.') then you'd fit a line and e...

etwa 7 Jahre vor | 0

Beantwortet
How do I create an animation with a coloured sphere changing in time? (for climate modelling)
you can do something like this [x,y,z] = sphere(30); [sx sy]=meshgrid(-1:.01:1,-1:.01:1); I=3*sin(2*pi*2*sx)+cos(2*pi...

etwa 7 Jahre vor | 0

Beantwortet
How to upload an image to a GUI frame?
so i take it you have an axes frame that you've tagged as imagedisplay. i'm curious why with said function you don't get warnin...

etwa 7 Jahre vor | 0

Beantwortet
Repeating If statement after variable change
not sure what you mean by repeat first with SS(1)==# as it wouldn't do the first if statement but the lower elseif statement. i...

etwa 7 Jahre vor | 0

| akzeptiert

Beantwortet
How do I piece together a 2-dim image using 3 given images, each representing R, G, B?
you should be using cat(3,red,green,blue) because you want to stack in the 3rd dimension. x = randi(3,3,3) x = ...

etwa 7 Jahre vor | 0

| akzeptiert

Beantwortet
Legend for a graph displaying multiple runs
you can look into specifying which points/lines are plotted in the legend() help documentation. I made a quick example that y...

etwa 7 Jahre vor | 1

| akzeptiert

Beantwortet
I need to create a 3 by 3 window and calculate mean within the window. This window is to move through the image. How can I do it?
I would take a look at the conv() and conv2() function. you would use something like [1 1 1;1 1 1;1 1 1]/9 to get mean. and the...

etwa 7 Jahre vor | 0

Beantwortet
How to make a 2D graph from text file
I can point out a few things. # if you look at M isn't that what you're trying to plot with A? as it should include both c...

etwa 7 Jahre vor | 0

Beantwortet
how to replace values of a matrix, if another matrix meet certain conditions?
i may be over simplifying it but doesn't the greater than (>) inequality just do it? A=magic(5) B=A>18

etwa 7 Jahre vor | 1

Mehr laden