답변 있음
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년 전 | 0

| 수락됨

답변 있음
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년 전 | 0

답변 있음
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년 전 | 0

| 수락됨

답변 있음
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년 전 | 0

| 수락됨

답변 있음
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년 전 | 0

| 수락됨

답변 있음
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년 전 | 1

| 수락됨

답변 있음
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년 전 | 0

문제를 풀었습니다


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년 초과 전

답변 있음
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년 초과 전 | 0

| 수락됨

답변 있음
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년 초과 전 | 0

답변 있음
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년 초과 전 | 0

| 수락됨

답변 있음
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년 초과 전 | 0

| 수락됨

답변 있음
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년 전 | 0

답변 있음
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년 전 | 0

답변 있음
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년 전 | 0

답변 있음
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년 전 | 1

답변 있음
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년 전 | 0

| 수락됨

답변 있음
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년 전 | 0

답변 있음
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년 전 | 0

| 수락됨

답변 있음
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년 전 | 1

| 수락됨

답변 있음
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년 전 | 0

답변 있음
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년 전 | 0

답변 있음
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년 전 | 0

답변 있음
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년 전 | 0

답변 있음
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년 전 | 0

답변 있음
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년 전 | 0

답변 있음
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년 전 | 0

답변 있음
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년 전 | 0

| 수락됨

답변 있음
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년 전 | 0

| 수락됨

답변 있음
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년 전 | 1

| 수락됨

더 보기