Respondida
Multiple Input/output function to excel
You can achieve this in many ways. The simplest way would be to just create arrays of your input ranges, for example in2=0:0.0...

alrededor de 4 años hace | 1

Respondida
compiling Matlab files not clear
Hi farzad, It is definitely possible to compile an m file to a standalone exe file, for example in the form of a GUI / app. Whe...

alrededor de 4 años hace | 1

| aceptada

Respondida
Can Matlab handle segmented graphs and automatic trendlines?
The answer to all four questions is yes. You can execute several plots in the same figure, as well as on the same axes (axes i...

alrededor de 4 años hace | 1

| aceptada

Respondida
How to centre textboxes on the plot outline?
First, make a handle for your figure: ax=axes; plot(ax,t,x); Next, when you set the dimensions of your textbox, refer b...

alrededor de 4 años hace | 1

| aceptada

Respondida
scalar vs nonscalar structure: advantages?
There are probably people out there much smarter than me, so take this with a grain of salt. If it were me, I would choose tha...

alrededor de 4 años hace | 0

Respondida
How to combine multiple files into one .csv
If I run your code and pause it after the first execution of the for loop, the num variable is empty, so something might be up w...

alrededor de 4 años hace | 0

| aceptada

Respondida
How to plot multiple vertical lines at specific points on x axis?
By default, matlab replaces plots on an axes instead of adding. However, if you set hold on, it will add instead of replacing, l...

alrededor de 4 años hace | 0

Respondida
Legend position according to axes
You can specify the position of your legend yourself with coordinates, rather than using a predetermined location. First two coo...

alrededor de 4 años hace | 0

Respondida
Read out parameter values of a polynomial compensation curve.
myfit=fit(x,y,'poly3'); From there you can extract the coefficients as myfit.p1, myfit.p2 etc.

alrededor de 4 años hace | 0

| aceptada

Respondida
Vectorized alterlative to identify duplicate elements in an array
Logical indexing for every instance, then convert the logical output to doubles and sum it (since you cant sum logicals), and fi...

alrededor de 4 años hace | 0

Respondida
How to change Y-axis in subplots of Boxplot on the same figure
You need a reference back to each inidividual subplot. Right now, your subplot1 label is overwritten each time, so you can only ...

alrededor de 4 años hace | 0

Respondida
Animating an m-file to show a rectangle filling up
I don't know what kind of animation you are looking for, but something quick and simple would be to insert a pause after every p...

alrededor de 4 años hace | 0

Respondida
how to load multiple files and do the computation for each of them and write the output in consequent rows
Your loop will want to start with grabbing all files in a folder. uigetfile with the MultiSelect option will work wonders here: ...

alrededor de 4 años hace | 0

| aceptada

Respondida
I need help with my While Loop!
Index them! Either as a structure, or an array with a 4th dimension. I personally favour structures, since 4D data makes my head...

alrededor de 4 años hace | 0

| aceptada

Respondida
how to read images one by one from folder for operation using for loop
I like to use the multiselect function of uigetfile as an input to a for loop: [Names,Paths]=uigetfile({'*.img*'},'MultiSelect...

alrededor de 4 años hace | 0

Respondida
data excel in matlab
You have an array dataExcel which has size(dataExcel,1) rows, and size(dataExcel,2) columns. The rows would correspond exactly t...

alrededor de 4 años hace | 0

| aceptada

Respondida
Counting specific element in one column corresponding to unique elements in an another column
You can use logic indexing. Example: length(b(a==1 & b==-1)); You get those entries from b which fulfils the condition that t...

alrededor de 4 años hace | 0

| aceptada

Respondida
Two x-axis for the same y-axis
You're on the right track with some of the stuff you have tabbed out. All you need is to set the x and y limits for your ax2 axe...

alrededor de 4 años hace | 0

| aceptada

Respondida
Help in Developing Graph.
This is case specific, but what you want to do is define the 8 interesting points, and then simply plot them. The text is less s...

alrededor de 4 años hace | 0

Respondida
Finding corresponding term from a uitable
If I recall, strcmpi needs string arrays, character vectors or cell arrays of character vectors as inputs, whereas you give it a...

alrededor de 4 años hace | 0

Respondida
Write table with UIPUT file
Try typing this bit in the command window: >> '(pname,fname)' ans = '(pname,fname)' So your path is a string named (pna...

alrededor de 4 años hace | 0

Respondida
How can I splitt up a big matrix into smaller matrises, splitting it up by values on the x-axis
Logical indexing will help you here - a for loop is also possible but would be much more complicated. Lets call your initial m...

alrededor de 4 años hace | 0

Respondida
How can I create a random walk for a given function?
You can use a for loop, and then add your randomness in whatever way you like. Example: for i=1:100 %anything that follows will...

alrededor de 4 años hace | 0

Respondida
Any idea how to do and represent ttest results on box plot?
Yes - the way forward is to compare 1 and 2, 1 and 3 and so on. You could look into some of the built-in tools in matlab, for ex...

alrededor de 4 años hace | 0

Respondida
How can i add new value into next row in excel?
A simple solution: define a counter file that pertains to your GUI - lets call it rownumber. Save it manually the first time, to...

alrededor de 4 años hace | 1

Respondida
while doing curve-fitting for custom equation, error is occuring??
If your input data contains or spans x=0, your first logaritm will not be defined. In addition, if your x exceeds 1, your second...

alrededor de 4 años hace | 0

Respondida
Delete 335 values every 335th time.
It is entirely possible that there is a much easier way to go about this - but here is nevertheless a way. I've made a for loop ...

alrededor de 4 años hace | 0

| aceptada

Respondida
How can I check if the next generated row has no repetitions in the same columns in the previous row using a while loop
Your problem is that the check you add in the end, (s (:, j)) ~ = 1, examines if the sum in column j is more than 1 - but the in...

alrededor de 4 años hace | 1

| aceptada

Respondida
Calculating grades in a while loop
You don't need a while loop for that - it is easy with logic indexing, like so: score=[82 75 78 82 90 87]; A=score(score>=90)...

alrededor de 4 años hace | 0

Respondida
How to plot an ultrashort light pulse
A true monochromatic laser beam can never achieve ultrashort pulse lenghts. Ultrashort pulses make use of interference of light ...

alrededor de 4 años hace | 0

Cargar más