Community Profile

photo

Jacob Ward


Last seen: 12 Monate vor Aktiv seit 2017

Followers: 0   Following: 0

Statistiken

  • Thankful Level 2
  • Knowledgeable Level 2
  • Revival Level 1
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
Load files from two different folders
Use the addpath() function to add the path to your second folder to the working directory: Add folders to search path - MATLAB ...

etwa ein Jahr vor | 0

Beantwortet
Question related to pcolor bar and its position
You can manually change the position of the colorbar using the 'position' property. Here's an example: fig = figure; subplot(2...

etwa ein Jahr vor | 1

| akzeptiert

Frage


When copying plot from one subplot position to another using copyobj, the second plot exhibits "hold on" behavior while the first doesn't.
Here's a bare bones version of the code that illustrates the problem. I want both plots to not hold on to previous iterations. W...

etwa ein Jahr vor | 2 Antworten | 0

2

Antworten

Beantwortet
How to count date occurrence independently of year?
This is a cool way of visualizing it as well: clear; dates = readtable('C:\Users\jacob\Downloads\Dates.xlsx','ReadVariableName...

mehr als 4 Jahre vor | 0

Beantwortet
I need help with my code. I don't understand what the error code is for. This is the error code Error: File: Lab1Modeling.m Line: 18 Column: 12 The expression to the left of the equals sign is not a valid target for an assignment.
There are a few problems with your code as written: First, you are using curly braces instead of using the while/end or if/end ...

mehr als 4 Jahre vor | 1

Beantwortet
How do I Average across structure
Here's a possible solution I used to solve your problem: clear; close all; % This part just creates dummy data similar t...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
I keep getting ??? Error using ==> plus Matrix dimensions must agree. Error in ==> dewpoint at 6 f(T,RH)=((a*T)./(b+T))+log(RH/100)
Your T has 4 elements (1x4) while your RH has 8 (1x8). When you try to add them together in your function, MATLAB doesn't know ...

mehr als 6 Jahre vor | 0

Beantwortet
count frequency of each unique occurence in an Nx2 matrix
You could iteratively test each row for the combo you are looking for, adding 1 to the total each time a match is found, like so...

mehr als 6 Jahre vor | 1

| akzeptiert

Beantwortet
please help regarding plot
Doubt you'll get much use out of this, but here's how I recreated the plot in the link you gave! numbers = round(9*rand(5...

mehr als 6 Jahre vor | 0

Beantwortet
Recursion, stock simulation
Instead of giving each variable a name with a different number, store all of these things in one array. So instead of S_0, S_1,...

mehr als 6 Jahre vor | 0

Beantwortet
Read different files with different names (string) in a loop in MATLAB
You don't need to use sprintf. Try the following: C={'a.dat', 'b.dat', 'c.dat',...}; for i = 1:n fid(i) = fopen(C{i}...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
Need help finding a point on a line.
The polyfit() function you are using gives you the slope and y-intercept of your best fit line. In this case, your p = [0.2190,...

mehr als 6 Jahre vor | 0

Beantwortet
Anybody know how to simplify this?
Not sure about the first one, but for the second one, the for loop and indexing is unnecessary. See this example: This... ...

mehr als 6 Jahre vor | 0

Beantwortet
Use ode values without storing
You could create a function that calls ode23, finds the sum of S, and then returns that sum. Something like this: function...

mehr als 6 Jahre vor | 0

Beantwortet
Calculating radius of circle
Using the following equation: <<http://hawaii.hawaii.edu/math/Courses/Math110/Graphics/Circle.jpg>> You have three unknown...

mehr als 6 Jahre vor | 3

Beantwortet
How can i convert .dat file values into days or months or years? Using Matlab?
If I'm understanding you correctly, maybe try something along these lines: milliSeconds = 221+3.5*rand(15006,1); % This ...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
I have a matrix which is 1000 columns and 3621 rows, how do I take the mean of each row?
In general, if you have a matrix A and want to take the mean across a certain dimension, dim, you should use mean(A,dim). ...

mehr als 6 Jahre vor | 1

| akzeptiert

Beantwortet
how to eliminate unwanted spikes with peaks
You could try interpolating the data to get a clearer peak. Here's an example: This code generates a peak similar to the one...

mehr als 6 Jahre vor | 1

Beantwortet
Can please somebody check my code and tell me what I ma doing wrong. I am trying to write a code for AM modulated wave of amplitude A to plot N element array of displacement values.
First off, please try to stick to the guidelines for posting questions to this site. See this answer for help in that area: ...

mehr als 6 Jahre vor | 0

Frage


Interp2 yields undesired results on center daigonal.
I am doing cross spectral matrices on some data where they look something like this: <</matlabcentral/answers/uploaded_files/...

mehr als 6 Jahre vor | 2 Antworten | 0

2

Antworten