Answered
Remove unwanted data above the line
This can be accomplished using conditional indexing and reassigning values to the blue-line data. The following example assumes ...

nästan 3 år ago | 0

Answered
Findpeak from the graph in specific range
[pks, locs]= findpeaks((x2(90:120)),'Npeaks',1) In your above line of code, you are indexing x2 from elements 90 through 120 an...

nästan 3 år ago | 0

Answered
Dot indexing is not supported for variables of this type.
It appears that you are initializing a new variable M_ at the start of your code and by default it is just an empty double-class...

nästan 3 år ago | 0

Answered
Scanning a txt file
Mohamad, A solution to your question has been provided in an older thread. See the link below for more details. https://www.ma...

nästan 3 år ago | 0

Answered
Getting mean row vector from a cell array of row vectors of the same size
It is not entire clear to me what you are trying to average. However, if I am understanding correctly, the following example att...

nästan 3 år ago | 0

Answered
I want to save my figure in another path. Every time I used the command save figure it saved in Desktop how I can change it
If your filename does not indicate the filepath in front of the filename, then MATLAB used your default directory location to sa...

nästan 3 år ago | 0

| accepted

Answered
Passing input variables from .txt or .xlsx or .csv into MATLAB Standalone Application
Kevin, One approach would be to create a pushbutton object with a callback to browse and import data. The following callback ex...

nästan 3 år ago | 0

| accepted

Answered
Dynamically adding to an excel sheet
It looks like your issue using the append feature has to do with your data being a table. Try using writematrix with your data a...

nästan 3 år ago | 0

Answered
How do I convert this string to a date ?
Try running a string replacement to remove "T" and "Z" from your string before reformatting to datetime. str = "2021-05-11T14:1...

nästan 3 år ago | 0

Answered
Array idx bug when resizing it
Ciro, It has to do with the way that the length function works. It will find and return the largest dimension in a 2-D array. S...

nästan 3 år ago | 1

| accepted

Answered
App Designer Tab Duplicated with properties
MATLAB requires that you manually create a callback for each object in App Designer. I say manually, but this is simply done by ...

nästan 3 år ago | 0

Answered
Reading csv files ignoring header info and text in between
Iroquois, The line numbers that you are referencing do not quite match up with your descriptions, and is making your needs a bi...

nästan 3 år ago | 0

| accepted

Question


Launch a custom App Designer application when opening a file.
I am looking for a way to program my data files, that I generate and save via a custom App Designer application, in such a way t...

nästan 3 år ago | 1 answer | 1

1

answer

Question


Uitable editable cells not updating at first key value
I have a uitable setup that allows the user to enter values in one of its columns. However, the issue is that MATLAB appears to ...

ungefär 3 år ago | 1 answer | 0

1

answer

Answered
Addition of 2 matrices with different dimensions
In this instance your are describing, MATLAB is assuming element-wise addition between the rows and columns. Where Where, x = ...

ungefär 3 år ago | 2

| accepted

Answered
How do I get a function in a for loop so it applies it to an entire table?
A relatively general approach to extract max values by year for each table variable (stations in this case) assuming the first v...

ungefär 3 år ago | 0

Answered
Add vectors in loop
I am certain that there is a much better method using vectorized indexing, but without seeing an example of the values in TimeSe...

ungefär 3 år ago | 0

| accepted

Answered
How can I hide the App Designer Slider Control's built in label programmatically?
In App Designer the label handles are created in conjunction with, but separately from the main object. The handles for the labe...

ungefär 3 år ago | 0

| accepted

Answered
Create multiple files via for loop
You can use uigetfile to easily select mutliple files and make the filename acquisition process a little more simple. % Prompts...

ungefär 3 år ago | 0

Answered
How to make 2 gui sharing the same handles structure
If you are using GUIDE to build your applications, then my suggestion would be to create a separate "Parameters" GUI application...

ungefär 3 år ago | 1

| accepted

Answered
How to format a matlab program to be useable by the application compiler?
It depending on how your code is written and your intentions for using it as an executable. Mostly likely you will need to have ...

ungefär 3 år ago | 0

Answered
Export a Cell as a text file with two delimters
Try the following: % Converts the cell array to a string array, then joins the strings using a comma-tab delimiter strjoin(str...

ungefär 3 år ago | 0

Answered
Convert Text into Date Format
Try the following: % Code works with either a string or numerical input str = '196307'; datestr(datenum(str,'yyyymm'),'mmmm y...

ungefär 3 år ago | 1

Answered
How to take 2D mean ignoring nan values using cellfun?
Niky, My previous suggestion did not fully look at the input requirements for 2D usage of std. The following revision should ac...

ungefär 3 år ago | 0

Answered
How to take 2D mean ignoring nan values using cellfun?
Try the following: a = mat2cell(A,dimSpec1,dimSpec1); % calculating standard deviation in segments sigma = cellfun(@(x) std...

ungefär 3 år ago | 0

Answered
Assigning NaN to certain values
A slightly more simple approach: Temp(round(Temp,4)<=-177.57)= NaN;

ungefär 3 år ago | 0

Answered
Replace the diagonal with NaN in this 5x5 matrix
Another approach to this if you know that your original matrix will always be a square matrix. You can use the following: a(eye...

ungefär 3 år ago | 1

| accepted

Question


Predetermine axis limits without plotting
I have a very large number of data sets (blocks) that I am currently extracting the min and max values from and plotting the res...

ungefär 3 år ago | 1 answer | 0

1

answer

Answered
Appdesigner Print Screen Problem - Appdesigner is a disappointment!
So after a bit more digging around I found exportapp(fig,filename), which does exactly as needed.

mer än 3 år ago | 0

Answered
Appdesigner Print Screen Problem - Appdesigner is a disappointment!
Baha411, I have been trying to find a solution to the same issue. I was able to save my figure to an image file perfectly in GU...

mer än 3 år ago | 0

Load more