Answered
multiple folder paths into a loop
to add onto what Mr. Roberson has up there: [a]=dir('B*\sss\ttt\*.txt') you can continue the search by using the wildcard + ex...

4 years ago | 0

| accepted

Answered
Incorrect use of '=' operator occurs in grey out area of app designer.
I was unable to create it myself but from the looks of it you might have a function or calculation that isn't terminated correct...

4 years ago | 0

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

4 years ago | 0

| accepted

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

4 years ago | 0

| accepted

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

4 years ago | 0

| accepted

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

4 years ago | 1

| accepted

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

4 years ago | 0

Solved


Radiation Heat Transfer — View Factors (1)
View factors (aka configuration factors) are utilized in some radiation heat transfer models to estimate heat transfer rates bet...

4 years ago

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

5 years ago | 0

| accepted

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

6 years ago | 0

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

6 years ago | 0

| accepted

Answered
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: ...

6 years ago | 0

| accepted

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

7 years ago | 0

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

7 years ago | 0

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

7 years ago | 0

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

7 years ago | 1

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

7 years ago | 0

| accepted

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

7 years ago | 0

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

7 years ago | 0

| accepted

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

7 years ago | 1

| accepted

Answered
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)...

7 years ago | 0

Answered
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

7 years ago | 0

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

7 years ago | 0

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

7 years ago | 0

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

7 years ago | 0

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

7 years ago | 0

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

7 years ago | 0

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

7 years ago | 0

| accepted

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

7 years ago | 0

| accepted

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

7 years ago | 1

| accepted

Load more