photo

Mitchell Thurston


Last seen: 11개월 전 2020년부터 활동

Followers: 0   Following: 0

통계

All
MATLAB Answers

0 질문
13 답변

Cody

0 문제
73 답안

순위
2,382
of 300,364

평판
26

참여
0 질문
13 답변

답변 채택
0.00%

획득한 표
7

순위
 of 20,934

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위
7,155
of 168,407

참여
0 문제
73 답안

점수
985

배지 수
5

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Knowledgeable Level 2
  • Community Group Solver
  • Introduction to MATLAB Master
  • First Answer
  • Solver

배지 보기

Feeds

보기 기준

답변 있음
How can I insert a variable into a plot legend, with a special character following the variable?
You can use sprintf formatting to get the variable inserted. You can also set the legend interpreter for latex formatting to get...

대략 1년 전 | 0

답변 있음
I can't see the cosine graph. How do I generate the cosine graph using 2^10 samples?
You should be able to just get rid of the for loop, ydata = 5 + 10*cos(2*pi*time+pi/6)

1년 초과 전 | 0

답변 있음
I made a folder with 12 .fig files, I am attempting to convert these to jpeg using a loop.
You can do it by running this code while inside the Figures directory files = ls; % get filenames of everything in that directo...

1년 초과 전 | 0

답변 있음
Basic FFT Question: What range to sample the function in.
When you perform an FFT, it is assumed that the original signal is on a timespan from [0 to 2*pi]. When you pass these signals a...

1년 초과 전 | 0

답변 있음
How can I obtain the derivative of a vector? Displacement-Velocity but what about acceleration? I am using the space state formulation
(Altered the code provided so that it ran properly) clc; %command window clear;%clear workspace close all; % close figures ...

거의 4년 전 | 1

| 수락됨

답변 있음
trouble coding for ODE's
this is definintely an inefficient way of doing it, but this accomplishes everything syms dx(t) x(t) m c k w % these are the te...

거의 4년 전 | 1

답변 있음
How can I 'hold off' specific Field vector using "quiver" into a updated "drawnown" inside a plot?
I'm assuming you're calling quiver in the "quiver(x,y,u,v)" style, since you can't use 1 argument % After plot 1 is made hol...

거의 4년 전 | 1

답변 있음
How to add regression line equation to a plot?
the most simple way I know of would be to add it to the legend you can add this to the last line of your code legend({'Data Po...

거의 4년 전 | 1

답변 있음
solve function can't solve an inequality
I'm able to get a solution with defining k as a real symbolic variable syms k real ineqs = [0 < 320/9 - k/9, 0 < (9*k + (k/9...

대략 4년 전 | 2

| 수락됨

답변 있음
For loop circles that wrap around another circle
Modified the calculation of alfa, R, and a slight change with the for loop clear; r=1; % small circles radius n=17; %number...

대략 4년 전 | 0

| 수락됨

답변 있음
I wan to create a 3x3 matrix and this matrix needs to contains first 3 raws and last 3 columns of other matrix which is unknown.
With the original larger matrix you want the rows and columns from being "A" and the resulting 3x3 being "B", A = B(1:3, ... ...

대략 4년 전 | 0

답변 있음
Closest Points between two datasets without using pdist2
Came up with a solution: [m,~] = size(A); [n,~] = size(B); A_rep = repmat(A,n,1); B_rep = B'; B_rep = repmat(B_rep(:)',...

대략 5년 전 | 1

답변 있음
Rotate circle on polar plot
For this specific case, you can rotate by adding within the sin(theta) call. theta = linspace(0,2*pi); rot_ccw = 1; % rotate...

대략 5년 전 | 0