Community Profile

photo

Sara Boznik


Last seen: 7 mois il y a Actif depuis 2020

Statistiques

  • Thankful Level 2
  • 3 Month Streak
  • Knowledgeable Level 2
  • Revival Level 1
  • Thankful Level 1
  • First Answer

Afficher les badges

Content Feed

Afficher par

Question


How to plot FFT?
Hi, I am trying to plot FFT of tuning fork. I know that peak must be at 440 Hz. I am trying with my Matlab code but nothing wor...

7 mois il y a | 1 réponse | 0

1

réponse

A répondu
Stateflow with embedded coder array storage in generated code
Hi, this is my idea: T=[] %%your data i=400 %%example if you want to check for values 400-500 for i=400:1:500 %%then jus...

9 mois il y a | 0

A répondu
plot a stepped frequency singal
Hi, if you dont have specific function, you can do simple step function like below: t = linspace(0, 1, 1000); % This defines...

9 mois il y a | 0

A répondu
How to make a matrix for mixed anova
Hi, I dont understand, do you want to create 3D matrix? That is not possible. You already have data in matrix so you can just...

9 mois il y a | 0

A répondu
How to move a simulink model with solidworks model to another new pc?
Hi, I had the same problem. If I remember correctly I had to replace all elements that were different in old version with blocks...

9 mois il y a | 1

A répondu
I want to create a matlab program to perform this operation and show the result in each operation in table
part=0; sumation=0; for i=1:1:200 for k=1:1:i part=x(i-k).*f(k) sumation=sumation+part end end Sumation is x(i).

presque 3 ans il y a | 0

A répondu
how take a mathematical function from user
./ means divide numbers because in matlab / means divide of matrix

presque 3 ans il y a | 0

A répondu
how to keep adding a varaible in a loop?
First one: n=1; suma=0 for n=1:1:1000 AA(1,n) suma=AA(1,n)+suma; norminv=1-suma n=n+1; end Second one: k=2...

presque 3 ans il y a | 0

A répondu
store data after WHILE loop
Try: state(:,n)=x(:); end state=state(:,1:n)

presque 3 ans il y a | 1

Question


How to solve this equation?
Hi everyone, I want to solve this equation in Matlab. Until now I have the following code: a=18 b=60 c=76.7 syms x solx=...

plus de 3 ans il y a | 1 réponse | 0

1

réponse

A répondu
How to replace a column vector in matrix
A = [1 -4 1;4 -1 2;2 2 -3] B = [6;-1;-20] B=B' A(1,:)=B'

plus de 3 ans il y a | 0

| A accepté

A répondu
How to plot (1) amplitude vs time and (2) amplitude vs frequency plots from .wav file
figure(1) subplot(2,1,1) plot(t,y); title('Horn C5'); xlabel('Time (s)'); ylabel('Amplitude'); % Amplitude vs Time plot subp...

plus de 3 ans il y a | 0

Question


Data with different length of rows
Hi I have following question. I have data like this: 1 2 3 4 5 6 7 8 9 1 2 3 4 1 2 I want to calculate average of each row....

plus de 3 ans il y a | 1 réponse | 0

1

réponse

A répondu
Adding cell array entries
for i=1:24 sol=sum((CC(:,i))) end

plus de 3 ans il y a | 0

A répondu
Evaluating 2D function on 2D grid without using "for" loops
f = @(x,y) x.^2+y.^2; x = 1:10; y = 1:5; [X,Y] = meshgrid(x,y); meshc(X, Y, f(X,Y)) grid on You can try that. Best of luc...

plus de 3 ans il y a | 0

A répondu
Three-digit format
Hi I suggest you that you use: fprintf('%.3g',1.111111)

plus de 3 ans il y a | 0

A répondu
MATLAB homework help request
It was told to me that I should not give the whole homework answers. But I can give you advises: if for loop (also formula ex...

plus de 3 ans il y a | 0

A répondu
How to find value of X when Y reaches maximum value
https://www.mathworks.com/help/symbolic/examples/maxima-minima-and-inflection-points.html read about this

plus de 3 ans il y a | 0

A répondu
How to select matrix column from minimum row value
distance_to_point = [2, 3, 4, 5; 6.8, 2.9, 6.1, 6.7] minima=min(distance_to_point(2,:)) [m,n]=find(distance_to_point==minima) ...

plus de 3 ans il y a | 0

A répondu
negative continuous position on vector
AA=[0 0 1 0 0 0 0] ne=-1; po=1; [n,m]=size(AA) b=find(AA(1,:)==1) BB=zeros(n,m) for i=1:b-1 BB(1,i)=ne ne=ne-1 ...

plus de 3 ans il y a | 1

A répondu
Layered Composite Calculations - how to perform a loop to calculate the moment for each layer of a composite when the equation changes as each layer is added in?
If you have M(r): k=2*r-1; part=0; mom=0; for i=1:r part=-siggy(i)*(k/2)*h0^2 k=k-2; mom=mom+part end

plus de 3 ans il y a | 0

| A accepté

A répondu
Indexing in a vector
r=triu(r); r; w=min(r(r>0)); b=max(r(:)); [m,n]=find(r==w); fprintf(id,'Minimum %.4f.\n',w); for i=1:length(m) fprint...

plus de 3 ans il y a | 0

A répondu
Creating a plot with 2 x -axis
Read about plotyy.

plus de 3 ans il y a | 0

A répondu
Matrix Determination Issue in getting hidden inputs
function matr() if [n,n]==size(A) & [m,m]=size(B) & n==m C=zeros(n,n); D=zeros(m,m); C=A; D=B; E=C.*D; Reversed_Matrix=fl...

plus de 3 ans il y a | 1

| A accepté

A répondu
What does mean .* and ' ?
.* means matrix product, if you don't write . will Matlab product the numbers on the same position. ' you use it usually when y...

plus de 3 ans il y a | 2

A répondu
Matrix Determination Issue in getting hidden inputs
Script: % n=input(""); that part is actually no needed % m=input(""); A=input('A'); B=input('B'); matr(A,B) Function: fun...

plus de 3 ans il y a | 0

A répondu
Matrix Determination Issue in getting hidden inputs
In function you write: function Determinant = matr (A,B) Reversed_Matrix=flip(A.*B); Determinant=det(Reversed_Matrix); end ...

plus de 3 ans il y a | 0

A répondu
why am I getting a different plot using fsurf and surf for the same function?
It is possible that you forgot .* Good luck.

plus de 3 ans il y a | 0

Charger plus