photo

Jacob Ward


Last seen: 3 días hace Con actividad desde 2017

Followers: 0   Following: 0

Estadística

All
  • Thankful Level 2
  • Knowledgeable Level 2
  • Sequences And Series III Master
  • Scholar
  • CUP Challenge Master
  • R2016b Feature Challenge Master
  • Indexing III Master
  • Draw Letters
  • Cody Problems in Japanese Master
  • Sequences And Series II Master
  • Introduction to MATLAB Master
  • Matrix Patterns III Master

Ver insignias

Feeds

Ver por

Respondida
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 ...

casi 2 años hace | 0

Respondida
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...

casi 2 años hace | 1

| aceptada

Pregunta


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...

casi 2 años hace | 2 respuestas | 0

2

respuestas

Respondida
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...

más de 5 años hace | 0

Respondida
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 ...

más de 5 años hace | 1

Respondida
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...

más de 6 años hace | 0

| aceptada

Respondida
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 ...

más de 7 años hace | 0

Respondida
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...

más de 7 años hace | 1

| aceptada

Respondida
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...

más de 7 años hace | 0

Respondida
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,...

más de 7 años hace | 0

Respondida
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}...

más de 7 años hace | 0

| aceptada

Respondida
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,...

más de 7 años hace | 0

Respondida
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... ...

más de 7 años hace | 0

Respondida
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...

más de 7 años hace | 0

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

más de 7 años hace | 3

Respondida
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 ...

más de 7 años hace | 0

| aceptada

Respondida
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). ...

más de 7 años hace | 1

| aceptada

Respondida
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...

más de 7 años hace | 1

Respondida
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: ...

más de 7 años hace | 0

Pregunta


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/...

más de 7 años hace | 2 respuestas | 0

2

respuestas