Respondida
how to reject whole columns based on a condition
No need to use for-loop. Please try the following: A = [5 10 18 13; -2 8 -9 10; 40 47 85 -...

más de 7 años hace | 0

Respondida
how can I read in this file of varying data types
Another possible solution: fid = fopen('earthquake_data.txt','r'); s = textscan(fid,'%s','Delimiter','\n'); s = s{1}; fclose...

más de 7 años hace | 0

Respondida
Scatter plot with extra features
How about using quiver function? Here is an example. data = [ % Temp Pres Azim 41 78 45 66 44 0 170 ...

más de 7 años hace | 0

Respondida
regexprep() skip first occurrence
How about using regexp to find the position of spaces, and delete 2nd~Nth spaces? Like: mystring = 'this is my string'; pos = ...

más de 7 años hace | 0

| aceptada

Respondida
How to read only numerical data from irregular .csv file
Since your csv file was saved as a 16-bit text, it's a little bit difficult to use textscan to read data correctly. I think ano...

más de 7 años hace | 0

Respondida
Help with making a function.
Like this? (Please save the following code as squareRootCheck.m) function y = squareRootCheck(x) if mod(sqrt(x),1) == 0 y =...

más de 7 años hace | 0

Respondida
symmetric color map using surf
Like this? cmap = interp1([-1;0;1],[1 0 0;0 1 0;1 0 0],linspace(-1,1)'); surf(peaks) colormap(cmap) colorbar

más de 7 años hace | 1

| aceptada

Respondida
Creating a matrix from a lagrer matrix
How about the following? In this case, C{1}, C{2}, ..., C{151} are 200-by-1 matrices each, extracted from original 30194-by-1 m...

más de 7 años hace | 1

| aceptada

Respondida
write data to header file
How abou the following? % Sample data data = rand(1,800); % Arrange it to comma-separated string str = num2str(data); str...

más de 7 años hace | 1

| aceptada

Respondida
How to convert 3d monthly data into season
How about the following? % Sample data Data = rand(56,42,360); % Reshape the data so that each row shows monthly data (42*5...

más de 7 años hace | 1

| aceptada

Respondida
Sum quarterly rows into annual results of revenue
How about the following? % Create data table with same structure of yours Date = repelem(datetime(2017,3,1)+3*calmonths(0:3),1...

más de 7 años hace | 0

Respondida
Mahalanobis distance matrix of an excel dataset
Like this? % Read data from Excel file Data = xlsread('yourExcelFile.xlsx'); % Calculate pair-wise mahalanobis distance D ...

más de 7 años hace | 0

| aceptada

Respondida
Trouble using sscanf to find numbers in a string?
Thank you for uploading your data file! How about the following? % Read data file fid = fopen('TemperatureRecord.txt','r'); ...

más de 7 años hace | 0

Respondida
How to find shortest distance in 3D?
You can use shortestpath function to find the shortest path between selected nodes. I believe the solution would be looks like t...

más de 7 años hace | 2

| aceptada

Respondida
How to save images as jpgs from .mat files struct
To save matrix as an image, please use imwrite function. In addition, if you save your data as an image file, I would recommend...

más de 7 años hace | 0

| aceptada

Respondida
Creating a table with repeating values
If the size of your variable m_female{1,1}(:,1) is 101-by-1, the following should work. Table_m_xt = table(... ones(101,1),r...

más de 7 años hace | 0

Respondida
Load all fields of a struct as input into a function
If your structure Input always has fields Var1 and Var2, a simple solution would be like this. function Var3 = TestFunction(In...

más de 7 años hace | 0

| aceptada

Respondida
How to interpolate in 3d?
You can use scatteredInterpolant to do this task. The following is an example. % Read data file Data = xlsread('Mappe2.xlsx') ...

más de 7 años hace | 1

| aceptada

Respondida
Interpolate positions between 2 matrix
How about the following? % First point position in the matrix M1 = [0 0 0 1 0 0 0; 0 0 0 0 0 0 0; 0 0 0 0 0 0 0; 0 0 0 0 0...

más de 7 años hace | 0

| aceptada

Respondida
I have matrix F (x,y coordinates), which is 1000*2 matrix. i calculated distances between coordinates using PDIST2 command. i want coordinates which are at distance greater than 22?
One possible solution would be like this: F = [x5;y5]'; % x,y coordinates D = pdist(F); % pdist function is suitable in this c...

más de 7 años hace | 0

| aceptada

Respondida
second order data fitting using least squares
Another possible solution: x = [0.81 0.85 0.91 1.00 1.17 1.33 1.36 1.37 1.39 1.40 1.42]'; y = [0.58 0.69 0.81 0.93 1 0.91 0.84...

más de 7 años hace | 0

Respondida
How to match Y with X?
How about the following? Running this code, the table T becomes the same as in your desired_output.xlsx. X = readtable('X .xlsx...

más de 7 años hace | 1

| aceptada

Respondida
how to calculate the standard deviation for each month in monthly time series data of 46 years?
If your goal is to calculate the standard deviation for each month, you don't need to reshape the data to 46X12. The following ...

más de 7 años hace | 0

Respondida
how to convert to a cell array from a single precision array
Hi Saugata-san, Thank you for providing more details. I believe the following will do the task you explained. a = [1.1 1.2; ...

más de 7 años hace | 0

Respondida
Having trouble rotating rectangle shape
Input argument of rotate function shall be a surface, patch, line, text, or image object. How about the following? figure axis...

más de 7 años hace | 0

Respondida
How to find points inside a country border
How abou the following? (In this script, I have used shape file provided in http://thematicmapping.org/downloads/world_borders....

más de 7 años hace | 1

| aceptada

Respondida
intersect two datetime vectors
The following can find identical timestamp with 0.1 sec tolerance. % Load data load('example1.mat'); % Find identical times...

más de 7 años hace | 3

Respondida
How can I replace data in a specific address in a text file with new modified data?
Looking at your uploaded data file, I think one possible solution would be like this. % Read all lines in text file fid = fope...

más de 7 años hace | 0

| aceptada

Respondida
Show long path with ... in short label like 'D:\folder\subfolder\...\data'
How abou the following? dirName = 'C:\svn-work\projects\projectname\matlab\mytoolname\data'; c = strsplit(dirName,'\'); dir...

más de 7 años hace | 1

| aceptada

Respondida
Extracting numbers from a filename
How about using regular expression? The following is a simple example. fileName = 'data_23.175_75.125'; num = regexp(fileNa...

más de 7 años hace | 1

Cargar más