已回答
Subscript indices must either be real positive integers or logicals.
In matlab arrays are indexed starting at 1 so S_x(0) is an error. You can use another array to store the 'range' values rang...

2 years 前 | 1

已回答
How to draw a letter T ? the background is black and the letter itself white
The current white block A(100:200,100:200) goes from column 100 to 200, so if you just make it longer 100:400 you will get a whi...

2 years 前 | 1

已回答
Decide values of row in matrix for certain row intervals
since you are just changing the first number, use res(a:b,1)=1

2 years 前 | 0

已回答
Can someone help me with this integration
you can do it without symbolic variables clear theta_s_vec = 0:0.1:pi/2; for ii = 1:numel(theta_s_vec) theta_s = theta_s...

2 years 前 | 1

已回答
Multiple line with different variable in a plot
Here is an example. Loop for each B but use pi_o as a vector in your calculations. clear; pi_o = 2:2:30; B=[3 5 8]; figure...

2 years 前 | 0

| 已接受

已回答
How to create ROI then know the total pixel number in ROI
You can use drawcircle to create a circular roi and then make a mask form it. Then you can sum or find the number of non-zero el...

2 years 前 | 0

| 已接受

已回答
How can I map a specific location in MATLAB using the drone images with corresponding gps data latitude and longitude?
You can use geoplot: Plot line in geographic coordinates - MATLAB geoplot (mathworks.com) Also: Create Maps Using Latitude and ...

2 years 前 | 1

已回答
Projectile Motion Equation with inputs of degree and first velocity
Here is an example Note you don't have to loop for each time value because matlab can perform calculations on the vector Note:...

2 years 前 | 0

已回答
How to apply masks created by roipoly to movie?
You can store the roipoly result in a cell array like this rois = cell(1,4) for ii = 1:4 rois{ii} = roipoly(I); end Wou...

2 years 前 | 0

已回答
Solving Integrations with Simpson's Rule
You need to declare Q as a function handle or use subs. syms r r0=3; Q = 4*pi*r*(1-r/r0)^(1/6); subs(Q,'r',0) %%% Alternati...

2 years 前 | 0

已回答
Is there a way to make this code output a plot with curved lines?
There might be an issue with your f or your jacobian After the first th2, your f~0 so norm(f)~0 and there are no convergence it...

2 years 前 | 0

| 已接受

已回答
how to run principal component analysis in a 3D matrix
You can reshape the matrix to 2D and then when you get results convert it back to the orginal dimensions if needed Reshape arr...

2 years 前 | 0

| 已接受

已回答
How do I make a heat/color map from individual data points?
You can interpolate between the points using gridded data interpolation: Interpolate 2-D or 3-D scattered data - MATLAB griddata...

2 years 前 | 1

| 已接受

已回答
Copy and paste from MATLAB to Excel?
check the variable preferences preferences Variables and see if "." is selected for number handling See this previous ques...

2 years 前 | 1

| 已接受

已回答
X,Y cordinates in a Matrix
Loop through your points like this, although I see XY is probably very long! A=zeros(3,3); disp(A) B=[1 1 1; 1 3 3]; fo...

2 years 前 | 0

| 已接受

已回答
How can I assign the same value to a repeating number?
(1) Not sure why "alocados" is just a random order of "datos" but you can do this any time, before or after Prb is assigned righ...

2 years 前 | 0

| 已接受

已回答
eig versus svd functions to calculate eigenvalues of complex matrix
I saw an answer Student in stackexchange that says eigenvalues and singular values coincide for a matrix that is real symmetric ...

2 years 前 | 0

已回答
Stacked bar graph with repeating datetime
You need to reorder your data into a matrix with shape "Number of Unique Dates" by "Maximum Measurements on Any Date" Something...

2 years 前 | 1

已解决


Magic is simple (for beginners)
Determine for a magic square of order n, the magic sum m. For example m=15 for a magic square of order 3.

2 years 前

已回答
Help me understand!
Equation 3 is a 2nd order system p''=..., the RK3 is given for 1st order p'=...(see it's first difference ) =..) See for exampl...

2 years 前 | 1

| 已接受

已回答
How to deal with Index exceeds the number of array elements??
You could pad the missing data with 0 or nan. Anyway if you want to ignore the incomplete cycle just check out-of-bounds and co...

2 years 前 | 0

| 已接受

已回答
How to plot heatmaps inside a table?
Maybe just have different axis for each radar. There are a few ways, but tiledlayout is easiest: heatvals = rand(4,40); % r...

2 years 前 | 0

| 已接受

已回答
Lookup values in other table that has a range of values
Something like this would add the gamma variable to your first table, BUT it's matching to nearest gamma rophole12.gamma = inte...

2 years 前 | 0

| 已接受

已回答
Three dimensional averages?
You can specify the dimension of averaging: Average or mean value of array - MATLAB mean (mathworks.com) M = mean(A,dim) M = m...

2 years 前 | 0

| 已接受

已回答
How to fit multiple curves to histogram subpopulations?
You could fit a distribution to the histrogram using histfit or fitdist, then identify the number of modes or peaks, N. Then fi...

2 years 前 | 1

已回答
how is keep the output values in program?
you can use save and load, here is a quick example: % run once, save results x = 1; y = x+1; save('case1.mat') % modify a...

2 years 前 | 0

已回答
Calculate area from a signal
You can use trapezoidal rule: see trapz: Trapezoidal numerical integration - MATLAB trapz (mathworks.com) area = trapz(x,y) % i...

2 years 前 | 0

| 已接受

已回答
Phantom cine format and Photron mraw
I don't think there is a built in method, but using fread you can open mraw format. I used this one in the past: Reader class f...

2 years 前 | 0

已回答
How to use a filename character array as a name of a variable?
You can use EVAL (see Stephen's comment to why this can cause error) [~,varname]= fileparts(filename) data = [....]; % your da...

2 years 前 | 0

加载更多