Answered
Loading weird data and without extension
It does help. So each variable has a width of 6 There are 36 columns of data, 16 rows for each day. Something like this would ...

2 years ago | 0

| accepted

Answered
extracting data from .ags file
Not pretty, but here's a quick and dirty template you can use to import AGS files. Since it appears the number of tables in the ...

2 years ago | 1

Answered
Unrecognized function or variable
You must turn your equation into an anonymous function in order to use Workspace variables in the equation. See here: https://ww...

2 years ago | 1

Answered
Incorrect number or types of inputs or outputs for custom function.
The error is caused by intL.empty(0,0) intL is not a valid datatype in MATLAB. Did you mean to use int8? The 'Not enough input...

2 years ago | 0

Answered
Editor display bug when changing screen with different resolutions
The best recourse for any perceived bug is to contact support directly: https://www.mathworks.com/support/contact_us.html

2 years ago | 0

Answered
How can I plot the innermost contour?
Use the LevelList Name-Value pair to specify what level(s) you want contours drawn at. L = 100; v_origin = 10; v_opposite = ...

2 years ago | 0

Answered
Why am I getting "horzcat" error?
The issue is because the 3 variables you are concatenating in this line of code have different numbers of rows. [q,w,stats]=ano...

2 years ago | 0

| accepted

Answered
latex interpreter in a wordcloud
wordcloud does not support the Interpreter Name-Value pair input. You an see the accepted inputs here. You can submit your sugg...

2 years ago | 0

| accepted

Answered
Deep Learning ANN Classification Model
Absolutely. Here is a page showing multiple examples, none of which are images: https://www.mathworks.com/help/deeplearning/gs/p...

2 years ago | 0

| accepted

Answered
how exactly to use the trainNetwork function?
You need to include a response input. net = trainNetwork(sequences,responses,layers,options) From the documentation for seque...

2 years ago | 0

| accepted

Answered
How to save a multiple plots data with labels, title, legends and then plot again on uiaxes?
You only have one axes, and both plot commands are to the same axes, so the 2nd plot replaces the first. You must redraw the sin...

2 years ago | 1

| accepted

Answered
Hi, when running the following code, I encountered the following error:
See this answer: https://www.mathworks.com/matlabcentral/answers/603127-how-to-replace-imageinputlayer-with-sequenceinputlayer-i...

2 years ago | 0

Answered
Cannot login to Matlab Drive Online
This is a community forum. To contact support, please visit this page: https://www.mathworks.com/support/contact_us.html

2 years ago | 0

Answered
generate a digraph using a cell array and an array
I think you want to use this syntas: G = digraph(s,t) This example is helpful: https://www.mathworks.com/help/matlab/ref/digrap...

2 years ago | 0

| accepted

Answered
Is there a way I can use geoplot() offline and without the mapping toolbox?
geoplot is not in the Mapping Toolbox. You can use it without having the Mapping Toolbox installed. As for using basemaps in of...

2 years ago | 1

Answered
Cropping Irregular Images on MatLab
See this answer: https://www.mathworks.com/matlabcentral/answers/2045660-cropping-an-irregular-image-in-matlab?s_tid=srchtitle ...

2 years ago | 0

Answered
Showing neural network training windows in live script
This is a snapshot of the Neural Network Training App, and it should be appearing in the output section of live scripts. You can...

2 years ago | 0

Answered
I want a user of my app to be able to input a matrix/array
They can use an edit field. They need to enter it all in one line, though. This approach is best for small arrays. A = [1 2 3; ...

2 years ago | 0

Answered
How to Solve Equations with Missing Parameters in MATLAB app designer
You probably need to have a check that no more than one of the 6 values is missing. Also, you need to assign the calculated res...

2 years ago | 0

Answered
How can I set the histogram width
You will need to turn your System Size values into categoricals. You haven't shared your data, so here's a simple example. % Wh...

2 years ago | 2

Answered
Indexing matrix with multiplication
It's not exactly the same. To keep the dimensions, the second option places a zero in each location that does not meet the mask ...

2 years ago | 1

| accepted

Answered
how to reload saved ANN model in workspace properly
It looks like your network was not saved in your mat file. What code did you use to create the mat file? Had your network variab...

2 years ago | 0

| accepted

Answered
After load ANN data in App Designer, how to predict from any input from user, then show the output? (callback is applied)
To make predictions, I suggest using your model like a function, meaning you pass the input to your model directly. prediction ...

2 years ago | 0

| accepted

Answered
I wish to purchase a license
You can find a description of each license option here: https://www.mathworks.com/store/ Any questions are best directed to Mat...

2 years ago | 0

Answered
Los siguientes datos: 12, 6, 7, 10, 11, 12, 6, 11, 14 y 11 corresponden a una población. Calcular la varianza y la desviación estándar.
https://www.mathworks.com/help/matlab/ref/var.html https://www.mathworks.com/help/matlab/ref/std.html?s_tid=doc_ta

2 years ago | 0

Answered
textAnalytics toolbox: removing Entity details from documents
I would use removeWords. documents = tokenizedDocument(Text(:)); tdetails = tokenDetails(documents) ; documents2 = removeWord...

2 years ago | 2

| accepted

Answered
Geoglobe is not showing
MathWorks is aware of a server issue and is working to resolve it.

2 years ago | 3

| accepted

Answered
How do I plot data varying with both axes in App Designer?
Looks like a contour plot to me.

2 years ago | 1

| accepted

Answered
how to obtain the data from the middle of the binary file using fread in MATLAB?
The input to fread is the size of the output (i.e. the number of bytes to read), not a range of bytes. Try this. fileID = fopen...

2 years ago | 0

Load more