Beantwortet
I have a txt file which has data in netcdf format. How to read it?
The link you shared gives an error, but using the information in the url, I was able to locate the file GPM IMERG Final Precipi...

fast 2 Jahre vor | 3

| akzeptiert

Beantwortet
Questions about the input X of pcolor and contourf.
See this example: Specify parametric grid [X,Y] = meshgrid(-3:6/17:3) XX = 2*X.*Y YY = X.^2 - Y.^2 colorscale = [1:18; 18:-1...

fast 2 Jahre vor | 0

| akzeptiert

Beantwortet
how to align two columns with different times
Your timestamps are using different scales. You can see this by fitting a line to the series by plotting timestamp 1 against tim...

fast 2 Jahre vor | 0

| akzeptiert

Beantwortet
Does Matlab R2018a_win64 work on Windows11
Yes, I have used R2018a on Windows 11 without any issues. To ensure you get accurate answers before making a decision, I would ...

fast 2 Jahre vor | 1

Beantwortet
Using mobiledev to acquire sensor data with MATLAB Grader
No, MATLAB Grader does not currently provide a way for learners to use their own data in an assignment.

fast 2 Jahre vor | 1

| akzeptiert

Beantwortet
Outerjoin isn't matching the same values in two different tables
Not sure how you created the time steps, but datetimes apply a display format to the actual data. Perhaps the actual values do d...

fast 2 Jahre vor | 2

Beantwortet
MATLAB FUNDAMENTALS 11.4 Issue with y-data in MATLAB plot not being correct
None of this code is necessary. release.Properties.VariableNames(1) = "Title" release.Properties.VariableNames(2) = "ReleaseD...

fast 2 Jahre vor | 0

Beantwortet
[Noob here] I need help with a file exchange which uses MATLAB function
The function spa has no outputs. It instead prints the results ot the screen. I would modify the function declaration to return ...

fast 2 Jahre vor | 0

| akzeptiert

Beantwortet
Pulling Columns by Name in CSV Files
See this page: Access Data in Tables Also, consider using readtimetable instead of a readtable. CurrentData = readtimetable('d...

fast 2 Jahre vor | 0

| akzeptiert

Beantwortet
Synchronize / Outerjoin two timetables, without copying shared Variables.
outerjoin works with timetables. However, what you have shared here is not a timetable. Define your left and right keys to be ti...

fast 2 Jahre vor | 1

| akzeptiert

Beantwortet
How to install Classification Learner app?
You need to install the Statistics and Machine Learning Toolbox. If you do not have it installed, you can use the Add-Ons explor...

fast 2 Jahre vor | 1

Beantwortet
Unrecognized function or variable in a code
You create an anonymous function, k, that uses a variable a in the function. However, this variable was not defined at the time ...

fast 2 Jahre vor | 0

| akzeptiert

Beantwortet
Don't know what is wrong with my output of this code
Your result has stitched all 3 images together. However, the function should be returning a single image (the moving one only). ...

fast 2 Jahre vor | 0

| akzeptiert

Beantwortet
i canot save my files
A recent change is impacting the toolstrip. A fix has already been released, but if necessary, you can save your changes to an e...

fast 2 Jahre vor | 0

Beantwortet
Cannot save file in Matlab online(Basic)
A recent change is impacting the toolstrip. A fix has already been released, but if necessary, you can save your changes to an e...

fast 2 Jahre vor | 2

Beantwortet
What's the best way to visualize position/zscore over multiple subjects?
Use groupsummary: B = groupsummary(A,groupvars,groupbins,method) Z = readmatrix('zscore.csv'); x = readmatrix('xcord.csv'); n...

fast 2 Jahre vor | 0

Beantwortet
How to add math symbols to Live Script text?
Try clicking the 'Insert Equation' icon to open the equation editor. https://www.mathworks.com/help/matlab/matlab_prog/insert-...

fast 2 Jahre vor | 0

Beantwortet
Problems with Matlab files
Please contact support: https://www.mathworks.com/support/contact_us.html

fast 2 Jahre vor | 0

Beantwortet
How to extract latitude and longitudes from a table given the timestamp range?
I would use isbetween to create an index of the table rows that are between the lower and upper times. I would then use that i...

fast 2 Jahre vor | 0

Beantwortet
Converting Unix Timestamp to Date Time
Set the 'datatype' option to 'posixtime'. As an example, the Unix time stamp 1718195288 is Wed Jun 12 2024 12:28:08 GMT+0000 ...

fast 2 Jahre vor | 0

Beantwortet
Where is the search bar on the Matlab File Exchange website?
This is a communicty forum. To share feedback/enhancements directly with MathWorks, use this link: https://www.mathworks.com/su...

fast 2 Jahre vor | 0

| akzeptiert

Beantwortet
Preparing input data for classification using LSTM
It is a mat file. This is a way of saving variables in MATLAB to a file (see save). It loads 3 variables to the Workspace data ...

fast 2 Jahre vor | 0

| akzeptiert

Beantwortet
I'd like to do various things, including controlling the dimensions of the plot box. What I do here with xlim, ylim, and zlim doens't work.
You are creating varlables named xlim, ylim, and zlim rather than setting the corresponding axis properties. Also, axis equal ch...

fast 2 Jahre vor | 0

| akzeptiert

Beantwortet
The course answer is wrong
When I add your answer into the current Chinese version of the course, the answer is marked correct. Please try submitting ag...

fast 2 Jahre vor | 0

| akzeptiert

Beantwortet
Hi everyone , i have LSTM trained model (time series sequence) which i want to load in my simulink model. how can i proceed with it. any help please
Train your network in MATLAB, then perform inference with it in Simulink using the predict block from the Deep Learning Blockset...

fast 2 Jahre vor | 0

Beantwortet
what is .data extension in matlab
It is not an extension. X is a structure with a field named 'data'. Learn more here: Structure arrays

fast 2 Jahre vor | 0

Beantwortet
How to visualise data in 4D or 5D?
See this answer: How to plot 5D in MATLAB Basically, 3 of the dimensions can be X,Y,Z. Additional dimensions can be represented...

fast 2 Jahre vor | 0

Beantwortet
Is there any way to speed this up?
My question is if it has to be done with isosurfaces. Here's an approach that uses scatter3. You can adjust the marker size to c...

fast 2 Jahre vor | 0

| akzeptiert

Beantwortet
Font size of command window is much larger than the one in Editor
You can Zoom in and out in the editor. Try switching to the View tab and use the Zoom In or Zoom Out options to adjust the edito...

fast 2 Jahre vor | 1

| akzeptiert

Mehr laden