Beantwortet
Construct a sphere using cuboids
question: same cuboid? only one and only one cuboid, or different shapes of cuboids can be used to approximate a sphere?

mehr als 10 Jahre vor | 0

Beantwortet
How can I acquire images from a camera at 100 Hz?
is your camera assuming USB 3.1 but are you using USB 2? What Falcon model are you exactly using? ANALOG and NATIONAL INST...

mehr als 10 Jahre vor | 1

Beantwortet
How to put a vector in a matrix?
CE= {(1,2) (1,4) (4,5) 6 7 8} does not work. Start with correct definition of the matrix CE={[1 2] [1 4] [4 5] 6 7 8} 1. re...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
help me not to use eval in a nested loop?
Hi, regarding naming each matrix, try B={};for i=1:1:10 B{i}=['Speed' char(i+48) '_Mvr' char(i+48)]; end then attach each ...

mehr als 10 Jahre vor | 0

Beantwortet
Function that graphs equations
try function out=buttnbread(min,max,n) t=min:n:max x0=input('Input x center: ') y0=input('Input y center: ') ...

mehr als 10 Jahre vor | 0

Gelöst


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

mehr als 10 Jahre vor

Gelöst


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

mehr als 10 Jahre vor

Gelöst


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

mehr als 10 Jahre vor

Beantwortet
Encrypting a message in matlab?
The second mask should not have any reference to the first mask, sorry. Replace the last 5 lines of code with mask2=find(num...

mehr als 10 Jahre vor | 0

Beantwortet
Encrypting a message in matlab?
original_message=input('Please enter the message you want encrypted:', 's') % original message % do not input key as string o...

mehr als 10 Jahre vor | 0

Beantwortet
loop table to find specific criteria and create new table
1.- instead of for i=1:max(size(a_file_list)) why not for i=1:(size(a_file_list,1)) 2.- datenum does not have 'mmmyy'...

mehr als 10 Jahre vor | 1

Beantwortet
Converting from Zernike's Polynomials values to a Point Spread and Modulation Transfer Function
To operate the instrument, read the manual: If you play a bit with the boxes of the link you include as 'here', one at a time, ...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
FPGA in the loop with simulink
may be this link helps to start building a bus: http://uk.mathworks.com/help/simulink/ug/buses.html?searchHighlight=Simulink%20...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
Problems after installing R2015a
Try removing user profiles from the Programs folder where you install MATLAB. Had similar problem with R2012. Cannot tell if re...

mehr als 10 Jahre vor | 0

Beantwortet
regarding the creation of sinewave movie
try modifying the L shaped membrane demo to display a 2D pulse propagation. MATLAB has an L shaped membrane demo script, that i...

mehr als 10 Jahre vor | 0

Beantwortet
solve a system of equations.
Could you please define ranges for each unknown? Be conservative, please define the following: Fcl_min= Fcl_max= hr_min= h...

mehr als 10 Jahre vor | 0

Beantwortet
how to generate an initial direction for a set of random points?
you have, for each particle: direction=[direction_x direction_y direction_z] position=[position_x position_y position_z] yo...

mehr als 10 Jahre vor | 0

Beantwortet
How can I distribute certain number among rows in a way that sum of the column is equal to that number?
Use unidrnd(600/2,1,areas) to generate the random numbers 600/2 is mean value of 600. Be aware that you want to fit random ...

mehr als 10 Jahre vor | 0

Beantwortet
Create a row vectors that includes even/odds between 0 and X
Also possible: find(mod(X,2)==0) and find(mod(X,2)~=0)

mehr als 10 Jahre vor | 0

Beantwortet
How to covert EEG Data file in .vrg format to .mat format to be open in matlab?
Hi, by vrg file format do you mean EDF file format? EDF: European Data Format file format to exchange multichannel biomedical...

mehr als 11 Jahre vor | 0

Beantwortet
Subscripted assignment dimension mismatch.(matrices)
Have you tried 1. allocate initial J just after defining N to make sure J and N have same size with: J=zeros(size(N)) 2. In...

mehr als 11 Jahre vor | 0

Beantwortet
Problem with the magnitude of DC component (zeroth order) by FFT
playing a bit with your script: {t1=[0:0.005:12]; % total amount of time samples: 10*1/.001=1001 y1 = 5 + 3*sin(2*pi*t1) + ...

mehr als 11 Jahre vor | 0

Frage


PLL examples some don't work powerlib problem
Hi, I downloaded a set of PLL examples, some work fine but fractional_6.mdl returns 2 errors: 1.- Model error: Source unkno...

mehr als 11 Jahre vor | 1 Antwort | 0

1

Antwort