답변 있음
How to change the C values that matches a 3 coordinates position condition?
Hi, friend! Just use scatteredInterpolant % Here is how I process Ftop = scatteredInterpolant(top(:,1), top(:,2), top(:,3), 'l...

거의 5년 전 | 0

| 수락됨

답변 있음
Solving coupled second-order ODEs using ode45 (equations of motion)
The odefun can be obtained using syms command syms M x z Y alpha V_0 l h_0 V = V_0 * ((exp(-alpha * z) - 1)^2 - 1) diff(V, z)...

거의 5년 전 | 0

| 수락됨

답변 있음
Add up a certain number of consecutive values followed by the next values in a row
I'll write for you! function a = everynsum(arr, n) p = length(arr); a = sum(reshape(arr,n,p/n)); % in case mod(p,n)=0 end

거의 5년 전 | 0

답변 있음
How can I split a file at defined intervals into multiple files?
s = fileread('test.txt'); % read files to string s k = find(s==newline); % find newline position s = mat2cell(s,1, diff([0,k(4...

거의 5년 전 | 0

| 수락됨

답변 있음
Can I specify the color of a graphics object by its index in the ColorOrder?
If you want different colors, you can use matlab build-in color series like jet, hsv, bone, copper. Eaxmples are n = 1:6; colo...

거의 5년 전 | 0

답변 있음
converting an excel formula into matlab
Hi, friend, I have translated your excel function to matlab command line. clc;clear a = readtable('C-RMSfluctuation.xlsx','Pr...

거의 5년 전 | 0

| 수락됨

답변 있음
how to find out node coordinates for a simple quad element?
Hi, friend! It seems you are studying the finite element method. For fem analysis, two important things for preprocessing are n...

거의 5년 전 | 2

| 수락됨

답변 있음
How can I create P-code for main script along with their sub-scripts?
You can make main file like this function main() % main file body end function fun1() % fun1 end function fun2() % f...

거의 5년 전 | 0

| 수락됨

답변 있음
Translate python into matlab
We firstly make data a matrix. Each row is named grades, and the row number is a. Then python code can be tranlated to matlab on...

거의 5년 전 | 0

답변 있음
How I can combine this cell values in a single matrix?
If X{1} is 1x7 array, the simplest way is matrixOut = cell2mat(X')

거의 5년 전 | 0

답변 있음
I want to do a 1D integral of some 2D data
trapz function has been wrongly used, trapz(x_array, F(x,y)) is with . So you should do following x=linspace(-3,3,200); y=lins...

거의 5년 전 | 1

| 수락됨

답변 있음
Incorporating guess count into a loop
(1) guess higher and guess lower were in the wrong position; (2) the count guessTimes should be initialized outside of the loop...

거의 5년 전 | 0

답변 있음
How to put "."after variables in a function for mesh command
Those with matrix times matrix or nth power of a matrix should be used with '.' nc=10; [D,delta_z] = meshgrid(((-1:1/nc:1)*2.5...

거의 5년 전 | 0

| 수락됨

답변 있음
How can i match value in file and write the match corresponding row in new file
If, for example, your data can be read by readtable function. File name is 'Data.txt', File format is as following: Col1 ...

거의 5년 전 | 1

| 수락됨

답변 있음
how to solve the one dimension Schrodinger equation?
Search the File Exchange for schrodinger equation,examples are too many

거의 5년 전 | 0

답변 있음
Reading .txt with multiple delimiters
If each line in the file is of the same format, I recommend the following formatSpec formatSpec = 'Sensor %d| %d| %f mS...

거의 5년 전 | 0

답변 있음
How to plot using a loop on the same axis
Is the time array t the same size as position1,speed1 for each loop with different customers? If so, then following loop will h...

거의 5년 전 | 0

| 수락됨

답변 있음
Please Solve error occurring while solving differential equation with ode15s
Just rewrite dxdt = A_cap*[x(1);x(2);x(3);x(4);x(5);x(6)] + R*F; N*[x(7);x(8);x(9);x(10);x(11);x(12)]+L*y + R*F_cap t...

거의 5년 전 | 0

| 수락됨

답변 있음
use string as x and y for a plot
Just use str2double function! NOMAX410LCR_Cp = str2double(NOMAX410LCR_Cp); NOMAX410LCR_Frequenz = str2double(NOMAX410LCR_Frequ...

거의 5년 전 | 0

답변 있음
Answer this Newtons Method problem
why not use fsolve or fzero? The following is newton's method function main f = @(x) [ sin(x(1)*x(2)) + x(1) - x(2); ...

거의 5년 전 | 0

답변 있음
Preallocating str for speed
According to @dpb's answer, here I provide a more general answer! T='956754674275'; encode = 'ABCDEFGHIJ'; str = encode(doubl...

거의 5년 전 | 0

답변 있음
How to find unknown constants from exponential equation
Your code is ok, but the nonlinear model function may not so well selected! clear v = xlsread('Book1.xlsx'); x=v(:,2); t=v(:...

거의 5년 전 | 0

답변 있음
Draw circle and ellipse in matrix
in line 3, do not use domain=ones(nx,ny); but use domain=ones(ny,nx);

거의 5년 전 | 0

질문


How can I timely recieve the simulation results via email
I use matlab to simulate something interesting, e.g., finite element analysis, but it takes long time to finish. Each time step ...

거의 5년 전 | 답변 수: 1 | 0

1

답변

답변 있음
How to remove all the rows containing a substring from a table?
Assume the table is named 'myTable'. Then p = arrayfun(@(i)strncmpi(myTable.beregnings{i}(end:-1:1),'maertsnwod',10),(1:1:siz...

거의 5년 전 | 0

| 수락됨

답변 있음
Replace NaN with median per column
It is convenient to use fillmissing function to get what you want matOut = fillmissing(matrixIn, 'linear', 'EndValues','nearest...

거의 5년 전 | 1

답변 있음
How can I extract quickly the numbers separated my commas and parenthesis from a txt file?
It is quite easy to do so. fid = fopen('a.txt','rt'); % a.txt is your file name a = textscan(fid,'(%f, %f) %f'); a = cell2mat...

거의 5년 전 | 0

문제를 풀었습니다


Calculate a Damped Sinusoid
The equation of a damped sinusoid can be written as |y = A.ⅇ^(-λt)*cos(2πft)| where |A|, |λ|, and |f| ...

거의 5년 전

문제를 풀었습니다


Solve a System of Linear Equations
*Example*: If a system of linear equations in _x&#8321_ and _x&#8322_ is: 2 _x₁_ + _x₂_ = 2 _x₁...

거의 5년 전

문제를 풀었습니다


Verify Law of Large Numbers
If a large number of fair N-sided dice are rolled, the average of the simulated rolls is likely to be close to the mean of 1,2,....

거의 5년 전

더 보기