charles atlas
suny binghamton
Followers: 0 Following: 0
Milk is for babies. When you get older you have to drink beer.
Professional Interests: engineering
Statistik
RANG
14.806
of 295.448
REPUTATION
2
BEITRÄGE
26 Fragen
4 Antworten
ANTWORTZUSTIMMUNG
76.92%
ERHALTENE STIMMEN
2
RANG
of 20.227
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 153.872
BEITRÄGE
0 Probleme
0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Frage
Urlread and write to an Excel sheet
All, I have the following code which reads the data off of this website <http://www.aviationweather.gov/adds/metars/?station_...
etwa 8 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
Adding map of the east coast to plotted lat/longs
All, I have a GUI that plots a number of lat/longs all over the east coast and the gulf. What I want is to underlay a map ...
mehr als 9 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
Storing products in a folder in my directory
All, So I have a script that reads data with urlread and then stores the data in a .txt file. I store the working directory ...
mehr als 9 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Having Matlab automatically choose the directory I am in
All, I have a code that references the user directory that I am in: userDir = uigetdir('C:\','Browse to station direct...
mehr als 9 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
Remove NaNs during plotting (keep array the same length)
Here is my issue: The Following code plots numbers as text on a Figure that already has points. for k=1:length(temps) ...
mehr als 10 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
cell array question finding minimums of intervals of time matrices
I have a cell array that is a 1:100 cell (cellarray1). each one of the contents of that cell is ALSO a cell. The contents of e...
mehr als 10 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Column Number Matching
I have two columns of data stored in array "A" one is random numeric data and the other is just numbers 1, 2, 3, 4, or 5. I wa...
mehr als 12 Jahre vor | 1 Antwort | 0
1
Antwortnumber of values greater than zero in a large matrix
Reducedmatrix=sum(Grandmatrix~=0); works the best. The problem is, it counts numeric data when there is more than one nonzero va...
mehr als 12 Jahre vor | 0
Frage
number of values greater than zero in a large matrix
I have a 900X25 matrix The matrix has rows of zeros with one or two numeric values. Some rows have all zeros. What I want to do...
mehr als 12 Jahre vor | 3 Antworten | 0
3
AntwortenFrage
Creating a meshplot with only x, y and z vectors (not matrices)
I have a bunch of points that correspond to random points on the x y plane. I have heights that correspond to heights of those p...
mehr als 12 Jahre vor | 1 Antwort | 1
1
AntwortFrage
Changing height Z axis in 3D scatter plot
I have a 3D scatter plot. My issue is that the X and Y axis are latitudes and longitudes and are stored in the arrays “LAT and L...
mehr als 12 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Deleting X-Y points that are not near other points on a field of data points
I have a set of data. This data is around 900 rows of two columns. Each row has an X and a Y value which specifies a point on th...
mehr als 12 Jahre vor | 3 Antworten | 0
3
AntwortenFrage
Adding a column of character data to a column of numeric data
I have two columns of data. One is a column of numeric data, and one is a column of time data. G=numeric data; T=datestr(T, 'H...
mehr als 12 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Deleting rows in Matlab
I have a large column vector (col1) I have the following code: notcontacts=(col1(:,1)>600); col1=col1.*notcontacts ...
mehr als 12 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Rows
I have a matrix of data and with 1000 rows and 5 columns. I want to take the minimum value in each row and store that in a colu...
mehr als 12 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
one column of data manipulating the other.
I have two columns of data as such: c1 = [1 3 5 9 13]; I have another column of data as such: c2 = [34 65 79 134]; I...
mehr als 12 Jahre vor | 1 Antwort | 1
1
AntwortFrage
Matching lines of data and negating errors in the textfile
I am reading in a text file with the following code: fid=fopen(‘filename.txt’, ‘rt’); X=textscan(fid, ‘%s%s%s%s%s’, ‘hea...
fast 13 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Return the number of rows of an array of cell data
I have an array of cell data “a” in Matlab. I want to look at the array (which contains numeric and text data) and say in Matla...
fast 13 Jahre vor | 3 Antworten | 0
3
AntwortenReading 3rd set of data from large text file
Is there any way to have a code that cycles through the text file and says once you see numeric data is 8 columns (skipping the ...
fast 13 Jahre vor | 0
Frage
Reading 3rd set of data from large text file
I have a large set of data that I am reading from a .lis file. There are 3 lines of header data, then a few thousand lines of nu...
fast 13 Jahre vor | 2 Antworten | 0
2
Antwortenreading columns from a text file with errors
In other words the data that I read in with fopen and textscan ends up looking like this: time 123 0.00 heating 5...
fast 13 Jahre vor | 0
reading columns from a text file with errors
They have spaces between them. they are numeric and text data
fast 13 Jahre vor | 0
Frage
reading columns from a text file with errors
I have a code displayed below clear clc file1=input('enter file name in single quotes '); fid = fopen(file1,'rt...
fast 13 Jahre vor | 4 Antworten | 0
4
AntwortenFrage
Comparing sets of data
I have a column of data that has a bunch of numbers indicating height of something. I have another column of data also indicatin...
fast 13 Jahre vor | 1 Antwort | 0
1
AntwortFrage
time on x axis
I have the following code fid = fopen('file.txt','rt'); X = textscan(fid,'%s%s%f%s%s%s%f%f%f%f%s%s%s%s',... 'HeaderLi...
etwa 13 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
Converting cell data to a matrix
I have one column of cell data in Matlab that reads the following: 11:32:44.69 InAir 0.00 Steady 0.00 -1.06 0.00 1.00 1...
etwa 13 Jahre vor | 1 Antwort | 0
1
AntwortFrage
plotting a line that is multiple colors
I have some data that I am plotting column A is time data in seconds, column B is height and column c is a column of string dat...
etwa 13 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Excel displaying unwanted date data
I have an array of date data as shown: dates= '12/23/2011' '12/23/2011' '12/23/2011' '12/23/2011' '12/23/2011...
mehr als 13 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Extract text data and time data from notepad file
I have a very large text file in notepad and I need to extract data from it. The exact data is displayed as such: 05/12/20...
mehr als 13 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
Vertical Distance between two points of curves on a graph
I have a graph with two curves written in matlab and I want code or a simple command to display the maximum vertical distance be...
mehr als 13 Jahre vor | 1 Antwort | 0