photo

Bob


Aktiv seit 2014

Followers: 0   Following: 0

Nachricht

Statistik

  • Thankful Level 3

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


Matlab Data Acquisition Toolbox Error with NI USB-6002
I am currently trying to use the Matlab Data Acquisition Toolbox with the National Instruments USB-6002. I am using Matlab versi...

etwa 9 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How do I make a plot background black?
I have two vectors. x=[1 2 3 4 5]; y=[10 20 30 40 50]; I plotted the vectors plot(x,y) The default background of ...

mehr als 9 Jahre vor | 3 Antworten | 2

3

Antworten

Frage


Using a for loop for legend plots
I was able to make each point a different color in my plot. I want to do the same thing for the legend. How can I put the legen...

mehr als 9 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Using a for loop and Using fprintf with a mixture of numbers and text in a table
I have the following array: A=[1; 2; 3; 4]; I then make an array B: B=[] I then use a for loop to assign eac...

mehr als 9 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Using fprintf with a mixture of numbers and text in a table
I have the following 2 arrays. A=[1; 2; 3; 4]; B=['green';'blue';'black';'yellow]; I want to use fprintf to to have A a...

mehr als 9 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


I need help using the quad function
When using the quad function to integrate, I am getting the error: FUN must be a function, a valid string expression, or an ...

mehr als 9 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Problem using polyfit and syms in a for loop
Here is my code. Z=[3 1]; for i=1:length(Z); syms a x=5*a-Z(:,i) A(i)=solve(x,a); syms b y=3*a+Z(:,i) ...

mehr als 9 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


Problems using polyfit in a for loop
I am getting an error when I try to run this polyfit. I think the problem is the values I am putting for xfit1 in the polyfit fo...

mehr als 9 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Changing Colors in a Plot Using a For Loop
Here is my code. Z=[3 1 7]; for i=1:length(Z); A(i)=Z(i)+2 B(i)=Z(i)-7 C(i)=Z(i)+4 col=[...

mehr als 9 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Concatenate Three Row Vectors into an Array in a For Loop
What is wrong with my code? Z=[3 8 2 4]; N=length(z); A(i)=5*Z(i); for i=1:N B(i)=A(i); C(i)...

mehr als 9 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Making Multiple Plots Using a For Loop
I have the matrix A A=[1 5 7 8; 4 3 2 3; 5 8 7 1] For all of the plots, the x axis range is x=[1 2 3 4] I need to have ...

mehr als 9 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Creating a column vector for each variable in a for loop?
Here is my code: D=[1 4 7 5]; for i=1:length(D) A=D(1,i) B=A+3 C=B-5 end How do I cr...

mehr als 9 Jahre vor | 1 Antwort | 0

1

Antwort