photo

cdawg


Last seen: más de 2 años hace Con actividad desde 2016

Followers: 0   Following: 0

sup

Estadística

All
MATLAB Answers

0 Preguntas
14 Respuestas

Cody

1 Problema
440 Soluciones

CLASIFICACIÓN
1.888
of 301.517

REPUTACIÓN
36

CONTRIBUCIONES
0 Preguntas
14 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.00%

VOTOS RECIBIDOS
6

CLASIFICACIÓN
 of 21.314

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN
257
of 175.060

CONTRIBUCIONES
1 Problema
440 Soluciones

PUNTUACIÓN
6.046

NÚMERO DE INSIGNIAS
28

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • MATLAB Central Treasure Hunt Finisher
  • Scavenger Finisher
  • 3 Month Streak
  • Knowledgeable Level 2
  • Quiz Master
  • Strings II Master
  • Creator
  • Cody Problems in Japanese Master
  • Project Euler I
  • Draw Letters
  • Promoter
  • Commenter

Ver insignias

Feeds

Ver por

Respondida
Add missing rows to a list in a cell array
Will this work? m = {... 9 [10370;10371;10372] 10 [12933;12934] 11 10001 12 11320 13 [11347;11348] 14 [10362;10363] 17...

casi 3 años hace | 0

| aceptada

Respondida
At line [gnum4,gden4]=series(gnum3,gden3,numK,denK); I have an error called transfer function not proper and I can not figure out why this error is occuring
This is happening because your numerator numK has more degrees than your denominator denK, making it not proper. I think you may...

casi 3 años hace | 0

Respondida
for some reason, when i am trying to make a bar graph which each datapoint plotted on each bar, the legend is not correct. only 2 of the 4 labels appear correctly
Your legend is showing the first four objects you plotted, which is bar, scatter, bar, scatter. You're only giving it 4 legend e...

casi 3 años hace | 0

Respondida
How to solve "Not enough input arguments."
you're creating e, c, d, a, and b within the function.. it looks like n could be the only input. is this what you're trying to ...

casi 3 años hace | 0

Respondida
How to calculate average inter-arrival time from data set?
I took a shot at this even though I had for loops :-) Enjoyed this (even if it might not be correct- haha) thanks!! %% IMPO...

casi 3 años hace | 0

Respondida
How to plot real time serial data.
The entire error is cut off in your screenshot, but it looks like you're trying to assign a vector into ch1Data(end+1) which onl...

casi 3 años hace | 0

| aceptada

Respondida
How do I get rid of the sinusoidal wave in my output waveform for fourier series sawtooth waveform?
I'm not totally sure by what you mean. If you mean get rid of the sine wave meaning just don't plot it: fs = 44100; % Sampling ...

casi 3 años hace | 2

| aceptada

Respondida
How do I fix these errors?
So the line that has the error (Line 9) you cut off- so I can't see the entire expression. But I see "C1;" ... try "C1,". You sh...

alrededor de 3 años hace | 0

Respondida
Index exceeding number of array elements
So you're getting that error because you're looping through i and the size of arm_ux is 1x1 (it's only one number). So when you ...

alrededor de 3 años hace | 0

Respondida
How do I turn a periodic square wave into aperiodic square wave?
Sampled aperiodic rectangle - MATLAB rectpuls (mathworks.com) Like this?

alrededor de 3 años hace | 2

Respondida
Automatically sorting years and quarters in a serial number
If you know the year you want to start with, I think this could work- years = [1990 1991 1990 1992 1993 1999 1996]; quarters =...

alrededor de 3 años hace | 1

| aceptada

Respondida
vertical concatenate strings in msgbox
Each one of those isn't a string. If you look at D, F, B, and N in your workspace they are character vectors. For example, if I ...

alrededor de 3 años hace | 0

| aceptada

Respondida
"theta" is defined inside of the statement, but when I run my code it gives me an error saying that " 'theta' is not a recognized function or variable'. Any solutions?
x is a vector so when you say "if x > 0" it is returning a logic vector of the locations where that is the case. You need to loo...

alrededor de 3 años hace | 1

| aceptada

Respondida
How to merge and slice arrays of different sizes?
I'm not totally sure if you mean add it as a new row to the second array or append the first array to the end of the second. If...

alrededor de 3 años hace | 0