Statistics
14 질문
8 답변
순위
3,274
of 258,166
평판
12
참여
14 질문
8 답변
답변 채택
71.43%
획득한 표
4
순위
of 110,323
참여
0 문제
0 해답
점수
0
배지 수
0
참여
0 게시물
참여
0 공개 채널
평균 평점
참여
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
질문
Examples of efficient and inefficient parallel computations on GPU
I am considering buying a new laptop, so I would like to know examples of efficient and inefficient usages of parallel computing...
5달 전 | 답변 수: 0 | 0
0
답변Matlab Live Scripts displaying figures in seemingly random order when multiple code blocks with subplots are used
As a workaround, you can use this MATLAB mechanism in your favor by creating a duplicate dummy figure then delete it to show the...
5달 전 | 0
질문
Find the normal vector at a specific point on a 3D surface defined by an equation
Consider the following code: rng('default') [Xs,Ys,Zs] = sphere; X = (0.99+0.01*rand(size(Xs))).*Xs; Y = (0.99+0.01*rand...
11달 전 | 답변 수: 0 | 0
0
답변질문
Find an index of a cell whose element satisfies a condition
Is there a way to economically fix the code below to make it work so that it returns the index of the cell element whose array h...
11달 전 | 답변 수: 2 | 0
2
답변질문
How to show the Unit parameter in the signal attrbutes of a constant block?
For the attached Simulink model I created using MATLAB R2021a, how can I show the Unit parameter in the block parameters of the ...
12달 전 | 답변 수: 1 | 0
1
답변To change Current Folder to the folder of .m File
For live scripts, @Qi Wang suggested using this: fileparts(matlab.desktop.editor.getActiveFilename) to get the full path of t...
약 1년 전 | 1
ode45 goes busy endlessly when using the sign of a state variable
Thanks to the explanation of Star Strider, the use of sign() can be replaced by fr*Mass*9.8)*(y(2)>0) to make it work.
약 1년 전 | 0
| 수락됨
질문
ode45 goes busy endlessly when using the sign of a state variable
This term "- fr*Mass*9.8*sign(y(2))" makes ode45 busy forever specifically when using 'sign(y(2))' I just need to make -fr*Mass...
약 1년 전 | 답변 수: 2 | 0
2
답변질문
Changing the same property of some axis children using subsasgn
How to make the following code work in order to change the 'Visible' property of some children plots whose handles are stored in...
약 1년 전 | 답변 수: 1 | 0
1
답변How to write code in MATLAB?
Your code in the question is not clear to me, nevertheless, my code below can be edited to fulfil your needs. x = 1:10; % array...
1년 이상 전 | 0
Working a definite integral
Read this Definite Integrals of Symbolic Expressions, then you can do syms x vpaintegral(1/sqrt(1-x^2)*(x^2+1.1202*x+0.2132),[...
1년 이상 전 | 1
| 수락됨
질문
How to solve a set of symbolic equations for the same variable?
Is there a way to make the following work and solve the following set of symbolic equations for the same variable and save the o...
1년 이상 전 | 답변 수: 1 | 0
1
답변질문
MeshDensity: How to exactly set the number of evaluation points of fplot?
In the documentation, it is said under 'MeshDensity' option of 'fplot': "Number of evaluation points, specified as a number. T...
1년 이상 전 | 답변 수: 1 | 0
1
답변질문
'deal' doesn't distribute the elements of a calculated array out of cellfun
For the following syms syma symb eqns = [... syma*exp(symb)== 1,... syma*exp(symb*1500) == 5,... ]; vars = [s...
1년 이상 전 | 답변 수: 1 | 0
1
답변How do I skip items in a legend?
You can simply delete the last undesired entry by the following: % assume you plotted some curves before this line and all of t...
1년 이상 전 | 1
autorename if saved file already exist
Revisitng this old question, I followed the idea of Jan to come up with this solution of appending the existent file name with a...
1년 이상 전 | 1
질문
Is it possible to have an inline function inside a cell array to conditionally return an element to be stored?
Consider I have mycondition = true; truestatement = 'yes'; % returned by the inline function when mycondition is true falsest...
1년 이상 전 | 답변 수: 2 | 0
2
답변How to selectively save the names and values of some workspace variables to a CSV file?
Thanks to the inspiring answer of @Rik, I found the following solution without the need to use for loop a = 3; b=7; c=5; d=9; ...
1년 이상 전 | 0
질문
How to selectively save the names and values of some workspace variables to a CSV file?
Consider the following a = 3; b=7; c=5; d=9; save('test.mat') data = load('test.mat'); toSave = { 'b' ; 'c' }; writece...
1년 이상 전 | 답변 수: 2 | 0
2
답변질문
Write to an already opened Excel file
The following MATLAB code works well for writing eActiveSheetRange.Value to the range eActiveSheetRange However, I have t...
2년 이하 전 | 답변 수: 1 | 0
1
답변질문
Live scripts stored in MATLAB Drive are assumed to be located in Temp folder
I have MATLAB R2019a on Win10 and MATLAB Drive Connector. Some live scripts are stored in the local MATLAB Drive folder. Howeve...
2년 이상 전 | 답변 수: 1 | 0
1
답변질문
Reshaping Nodal Spatial Vectors into 3D Matrices for Countourslice
I have a problem of temperature field across a cubic domain. My nodes locations are stored in 3 column vectors of *x=[x1 x2 ....
7년 이상 전 | 답변 수: 0 | 0