已回答
How to save parameter function in app designer?
If by "save the data" you just mean you want to store it for use within your current MATLAB session (within the App or outside),...

9 months 前 | 0

已回答
Help: How to use 'for' loop to plot multiple different values when using while loop for function?
If you're trying to avoid plotting on the same figure, you could move your "figure(1)" command into the "if" statement and place...

9 months 前 | 0

已解决


Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.

9 months 前

已解决


Doubling elements in a vector
Given the vector A, return B in which all numbers in A are doubling. So for: A = [ 1 5 8 ] then B = [ 1 1 5 ...

9 months 前

已解决


Create a vector
Create a vector from 0 to n by intervals of 2.

9 months 前

已解决


Flip the vector from right to left
Flip the vector from right to left. Examples x=[1:5], then y=[5 4 3 2 1] x=[1 4 6], then y=[6 4 1]; Request not ...

9 months 前

已解决


Whether the input is vector?
Given the input x, return 1 if x is vector or else 0.

9 months 前

已解决


Find max
Find the maximum value of a given vector or matrix.

9 months 前

已解决


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

9 months 前

已解决


Inner product of two vectors
Find the inner product of two vectors.

9 months 前

已解决


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

9 months 前

已解决


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

9 months 前

已解决


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

9 months 前

已回答
Adding Contour Lines to a 2D Surf Plot
Replace surf(A,B,C) with s = surf(A,B,C); From there you can use dot notation to access the properties of the surface objec...

9 months 前 | 0

已回答
How to modift gplotmatrix legend marker size?
https://www.mathworks.com/help/stats/gplotmatrix.html?s_tid=doc_ta#mw_f131a46d-17ee-4a14-a3b8-45d0317f69bc https://www.mathwork...

9 months 前 | 1

| 已接受

已回答
Several Y axis in the same plot
From the Discussions on File Exchange, it looks like you might jus thave to replace all the occurences of "colorord" with "Color...

9 months 前 | 0

已回答
How do I plot a direction field for x'=y and y'=-sinx?
% Define the range of x and y values x = linspace(-pi, pi, 20); y = linspace(-2, 2, 20); % Create a grid of x and y values ...

10 months 前 | 0

| 已接受

已解决


Calculate area of sector
A=function(r,seta) r is radius of sector, seta is angle of sector, and A is its area. Area of sector A is defined as 0.5*(r^2...

10 months 前

已解决


Pizza!
Given a circular pizza with radius z and thickness a, return the pizza's volume. [ z is first input argument.] Non-scored bonus...

10 months 前

已回答
Storing data of the whole uitable into a variable
You can use public properties to access variables from an app outside of an app.

10 months 前 | 0

| 已接受

已回答
EEG data from Emotiv
First you need to construct a vector representing the time values associated with your data: t = (1:3200)/128; Then you can ...

10 months 前 | 0

已回答
edfwrite can not export my signal properly
You're on the right track thinking about the PhysicalMin, PhysicalMax, DigitalMin, and DigitalMax values. You need to specify th...

10 months 前 | 0

| 已接受

已回答
Timing for referencing EEG preprocessing
Here is a detailed explanation on the biological/electronics theory behind referencing for EEG. https://eeglab.org/tutorials/Co...

10 months 前 | 0

已回答
Organising data for Machine Learning
Tables are a useful tool for organizing data in a human-readable way without sacrificing significant memory overhead. This examp...

10 months 前 | 0

已回答
Vectorize averaging a timerange in a large timetable
Preallocating your variables before a for loop is a great way to help with performance. arrayfun, cellfun, and structfun are als...

10 months 前 | 1

| 已接受

已回答
App control for axes layout
You could attempt to do this using subplot, but it requires a little extra effort than just calling subplot for a standard figur...

10 months 前 | 0

已回答
how to show a numerical data on GUI using static text or edit text or any method
If you are using AppDesigner, this page has information on visualizing data in apps. See this page for information on how to sha...

10 months 前 | 0

已回答
Land data from multiple subfolders into structure
You are not calling dir properly. The string input to dir should be an absolute or relative path name. Try changing the string t...

10 months 前 | 1

| 已接受

已回答
How is the number of weights in the first layer of fitcnet determined?
The matrix "X" in the ionosphere dataset contains 34 features. Your input layer must always have the same number of columns as f...

10 months 前 | 1

| 已接受

已回答
Is it possible to send MIDI from Matlab to a DAW?
Generally the process would be to create a virtual MIDI port, send the MIDI messages from MATLAB to this port, and receive the m...

10 months 前 | 1

加载更多