Risposto
Geoshow with MLT instead of longitude
This does not completely resolve your problem, but it may be helpful to get you started: % Load your data all_data = load('str...

3 mesi fa | 0

| accettato

Risposto
MATLAB figure with transparent background into Google Slides
This answer is an update to my previous comment with better instructions: If all you need to do is create a MATLAB figure with ...

3 mesi fa | 0

| accettato

Risposto
I can only publish half of my script
It may be an issue with your browser. I just tried publishing your code to a PDF using Microsoft Edge and it seems to have work...

3 mesi fa | 0

Risposto
Plot 2D vector in AppDesigner
I could not get the vplot function to work, but there is always quiver. For instance, if you add a button to your app and give ...

3 mesi fa | 0

Risposto
How can I return a value from an excel spreadsheet based on multiple user input variables?
Here is an example of how you can ask the user to select from a list of ingredients rather type the ingredient names manually: ...

3 mesi fa | 0

Risposto
Create plot with gradient descend vectors for function of 2 variables
My apologies for the double-response. I accidentally answered your question as a comment rather than as an answer. If I am unde...

3 mesi fa | 0

Risposto
An automatic way to change \ with / (windows vs. unix) only for "addpath"?
file_name = '/Users/XXX/Documents/...'; file_name = strrep(file_name,'/','\'); addpath(file_name) EDIT: Just to explain, I am...

3 mesi fa | 1

Risposto
how to xlimit for 3 different plot in 1 figure?
% Example plot subplot(3,1,1) plot(rand(10,10)) subplot(3,1,2) plot(rand(10,10)) subplot(3,1,3) plot(rand(10,1...

3 mesi fa | 0

Risposto
I have "step" data and I want value only on the steps
If you want to count each step as being any increase from the previous value then this is what you want: locs= []; for i = 2:l...

3 mesi fa | 0

Risposto
Why do I get "Array indices must be positive integers or logical values" when I am trying to plot my functions?
In MATLAB, indexing starts at 1, so you cannot have C(0), i(0), or y(0). Rather, it needs to be C(1), i(1), or y(1). EDIT: @Ma...

3 mesi fa | 1

Risposto
Handling Undesirable Characters in Numeric Columns When Reading a CSV File
If you have Microsoft Excel (or Google Sheets) you can use the Replace Tool to get rid of the [u.] in all of the columns. Simply...

3 mesi fa | 0

Risposto
Problem with saving surf plot in vector format
It is odd, but even though MATLAB allows you to save plots as SVG files I am not certain that it allows you to import SVG files....

3 mesi fa | 0

Risposto
Boxplot with equal spaced interval?
Are you asking for something like this? % Fake data xdata = 1:200; ydata = randn(30,200); % Extract every tenth column id...

3 mesi fa | 0

| accettato

Risposto
How can i make the legend as shown in the figure attached?
Generating some example data (use your actual data instead of this) % Generating fake experimental data since I don't have your...

3 mesi fa | 1

| accettato

Risposto
heatmap NaN Color replacement BUG
Instead of using the NanColor name-value pair (which I don't even see in the documentation?), you can try saving the plot to an ...

3 mesi fa | 0

| accettato

Domanda


Is there a better way to plot categorical data radially than using the polarhistogram function?
It is easy to plot categorical data with the histogram function: authors = categorical({'Austen','Bradbury','Brown','Brown','Br...

3 mesi fa | 1 risposta | 0

1

risposta

Domanda


How to fully display y-axis labels if they do not fit inside of the figure window when specifying a figure size and using subsubplot?
I am using the subsubplot function from the Climate Data Toolbox to make a figure that is 3 inches wide by 4 inches tall, but th...

7 mesi fa | 1 risposta | 0

1

risposta

Domanda


How to efficiently extract 2-D data from multiple text files and save it as a single 3-D variable?
I have 456 comma-delimited text files. Each file represents one month of climate data, containing 600 rows and 900 columns. I w...

circa 2 anni fa | 1 risposta | 0

1

risposta

Domanda


How to test whether two arrays are statistically different?
This may be a silly question, but I don't have much of a background in statistics and I want to make sure I do this properly. I...

circa 2 anni fa | 1 risposta | 0

1

risposta

Domanda


Need assistance properly plotting a 3D variable from a NetCDF (.nc) file.
I want to spatially show the evapotranspiration data contained within a NetCDF file, but almost all of the values appear the sam...

oltre 2 anni fa | 1 risposta | 0

1

risposta

Domanda


Why does polyfit/polyval not work for fitting a 2nd degree polynomial to my dataset?
I am trying a fit a 2nd degree polynomial to my data, but it is not working the way I expected it to. What might I be doing wro...

oltre 2 anni fa | 1 risposta | 0

1

risposta

Risposto
How can I extract the 'missing_value' from a variable in a NetCDF file?
Actually, it looks like I figured it out for myself! % Get structure of .nc file data info = ncinfo(filename); % Extract mi...

oltre 2 anni fa | 0

| accettato

Domanda


How can I extract the 'missing_value' from a variable in a NetCDF file?
I have a NetCDF (.nc) file containing evapotranspiration data. I want to extract the value from the 'missing_value' field in ev...

oltre 2 anni fa | 1 risposta | 0

1

risposta

Domanda


How can I overlay a shapefile onto a geoscatter plot?
I am plotting radiocarbon data for the U.S. state of Ohio using the geoscatter() function: geoscatter(radio.Latitude,radio.Long...

oltre 2 anni fa | 1 risposta | 0

1

risposta

Domanda


How to find correlations between a vector and a 3D array and plot the correlations spatially?
How can I calculate correlations between a vector of isotope data from a single location and a spatial array of precipiation dat...

oltre 2 anni fa | 1 risposta | 0

1

risposta