![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/10242443_1504727156054.jpg)
Jacob Ward
Followers: 0 Following: 0
Estadística
2 Preguntas
18 Respuestas
0 Problemas
570 Soluciones
CLASIFICACIÓN
1.556
of 297.016
REPUTACIÓN
44
CONTRIBUCIONES
2 Preguntas
18 Respuestas
ACEPTACIÓN DE RESPUESTAS
100.0%
VOTOS RECIBIDOS
8
CLASIFICACIÓN
of 20.419
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
152
of 157.725
CONTRIBUCIONES
0 Problemas
570 Soluciones
PUNTUACIÓN
8.236
NÚMERO DE INSIGNIAS
41
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
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
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
respuestasHow 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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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