Risposto
Get the column number of the false values in a logical output
You can use the find function: N = 50; A = 1:N; B = 1:41; index = ismember(A,B); [row,col] = find(~index); disp(col)

oltre 5 anni fa | 0

| accettato

Risposto
I want MATLAB to trigger an event at 8:00 AM tomorrow, how would I do that?
You should use the timer class that Fangjun linked, but your approach is also possible: t2 = datetime('tomorrow'); while true ...

oltre 5 anni fa | 0

Risposto
Count Total Number of Rows for Multiple .txt files in a Folder
I don't think it is possible to avoid reading all files and count the number of lines in each (unless each line is a fixed lengt...

oltre 5 anni fa | 0

| accettato

Risposto
GUI Push Button Help!
There are two strategies to do this. You can either put all buttons and other relevant objects in the same figure and set the vi...

oltre 5 anni fa | 0

Risposto
Finding the length of square function
In general you can approximate the arc length by measuring the distances between the points and adding them. t=linspace(0,20,10...

oltre 5 anni fa | 0

| accettato

Risposto
matlab code for pseudo random
This looks like a fairly fragile setup to share an encryption key. Any file that results in a valid state value can be used. ...

oltre 5 anni fa | 0

Risposto
Convert a value into a Matlab syntax string
You can do it like that, but it is already Matlab syntax if you add the square brackets, as arrays can be defined across multipl...

oltre 5 anni fa | 1

Risposto
Sorting out data in a matrix
Loop through the elements of find(diff(A(:,3))>=5) That way you can get the row indices for the cases you need. That should m...

oltre 5 anni fa | 0

Risposto
For loops for multiple variables
You only need a single loop: for n = 1:length(C) m_=m(n); rho_=rho(n);

oltre 5 anni fa | 0

| accettato

Risposto
How to bookmark a piece of code
I believe it is possible to add buttons that run code. You can use the clipboard function to copy this as text to the clipboard....

oltre 5 anni fa | 1

| accettato

Risposto
How to select data points for interpolation
Index your variable: point(1:5)

oltre 5 anni fa | 0

Risposto
How to write multiple image from a for loop to a dir
Assuming the missing end keyword goes at the end: Your filename depends on only the inner loop, not the outer loop.

oltre 5 anni fa | 0

Risposto
Not enough input arguments despite all arguments available
Strange errors are bound to appear if you use the function name as a variable as well. This might result in a parse error on som...

oltre 5 anni fa | 1

| accettato

Risposto
Plotting Electrical Signals with Guide
For general advice and examples for how to create a GUI (and avoid using GUIDE), have look at this thread. For general advice a...

oltre 5 anni fa | 0

| accettato

Risposto
Generate a Matrix with the structure in the description
No loops required: X=tril(ones(128)); [r,c]=find(X); out=[c r]; For the next step I would suggest you create a cell array wi...

oltre 5 anni fa | 1

Risposto
Need help graphing this
The <https://www.mathworks.com/support/learn-with-matlab-tutorials.html Onramp tutorial> will guide you through problems like th...

oltre 5 anni fa | 0

Risposto
How can i create constant in a .m archive and use it for the creation of new objects?
You could turn your script into a function. If you store all variables as fields of a struct you can use something like this to ...

oltre 5 anni fa | 0

Risposto
Best way to pass uicontrols/data to callback function.
I would suggest splitting everything into smaller functions. If you have a function that changes the content of buttons: write i...

oltre 5 anni fa | 0

| accettato

Risposto
make plot the square wave
Since this is homework, I left some holes for you to fill. T=___;%what should the period of your square wave pulse be if you wa...

oltre 5 anni fa | 0

Risposto
How to extract specific data from file extension TRO file?
You could use something like readtable to load your file to a table. If that doesn't work you will have to process each line sep...

oltre 5 anni fa | 0

| accettato

Risposto
How can one get t-stat of fitlm as an output?
It is in the top example: load carsmall X = [Weight,Horsepower,Acceleration]; mdl = fitlm(X,MPG); mdl.Coefficients.tStat

oltre 5 anni fa | 0

| accettato

Risposto
A loop that saves the data from the inner loop as next file
There are several issues with your code. I will attempt to fix most of them below. %create some random data tw1=rand(148,3); ...

oltre 5 anni fa | 1

Risposto
How to restore a deleted/tampered question?
As an example, I'm going to use a thread that was recently edited: https://www.mathworks.com/matlabcentral/answers/665533-how-ca...

oltre 5 anni fa | 8

Domanda


How to restore a deleted/tampered question?
Sometimes users remove major parts of their question, which makes the answers/comments much less useful for future readers. The ...

oltre 5 anni fa | 1 risposta | 10

1

risposta

Risposto
HTML Page source info
One possibility with strfind: close_div=strfinf(d,'</div>'); param=1; pat=sprintf('<label>Parameter%d : </label> <div class...

oltre 5 anni fa | 0

| accettato

Risposto
set value of a variable according to date
No need to convert to a numerical date: d1 = datetime('01-March-2020'); d2 = datetime('31-May-2020'); date=datetime('10-March...

oltre 5 anni fa | 1

| accettato

Risposto
Saving an image file, text formatting lost.
There are two renderers in Matlab. Each has their specific use, but the saveas function sometimes switches to the other renderer...

oltre 5 anni fa | 0

Risposto
Problem in the for loop
You are using a syntax that only works on Octave, not Matlab. You don't reset your error at the start of every iteration, so ...

oltre 5 anni fa | 0

Risposto
How can I save the beginning and end positions of each sequence in a cell array?
%Since your code is working fine you can keep it as is. %I just used my own function to use your data. x_conv=readfile('https:...

oltre 5 anni fa | 0

| accettato

Risposto
when i am executing the below code in matlab R2014a i am getting error Function defnitions are not permitted in this context can you please resolve the issue?
The error sounds like you have code before this in the same file. You need a newer version of Matlab to have a function defined ...

oltre 5 anni fa | 0

Carica altro