回答済み
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...

5年弱 前 | 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...

5年弱 前 | 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...

5年弱 前 | 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...

5年弱 前 | 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...

5年弱 前 | 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...

5年弱 前 | 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...

5年弱 前 | 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...

5年以上 前

回答済み
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...

約6年 前 | 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 ...

7年以上 前 | 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...

7年以上 前 | 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: ...

7年以上 前 | 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...

8年弱 前 | 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...

8年弱 前 | 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...

8年弱 前 | 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...

8年弱 前 | 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...

8年弱 前 | 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 = ...

8年弱 前 | 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...

8年弱 前 | 1

| 採用済み

さらに読み込む