Yongjian Feng
Followers: 0 Following: 0
統計
All
ランク
of 153,872
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
送信済み
Animated-Gradient-Descent
Animate gradient descent in 3D plot or 2D contour plot. Visualization. Demonstrate impacts of alpha, starting point, saddle po...
4ヶ月 前 | ダウンロード 4 件 |
回答済み
Invalid ReqIF file. Error details: Type 'AttributeValueTyped_reference' has not been found in the registry.
Hi Hannah, This ReqIF is not a valid ReqIF. As shown in the error message, one spec-object (a "requirement" in the language of...
Invalid ReqIF file. Error details: Type 'AttributeValueTyped_reference' has not been found in the registry.
Hi Hannah, This ReqIF is not a valid ReqIF. As shown in the error message, one spec-object (a "requirement" in the language of...
10ヶ月 前 | 0
回答済み
MatLab App and requirements linking with Requirements Manager
Hi Mark, There is an alternative here. The logic of your MatLab App can be implemented in m-code, and you can call those m-code...
MatLab App and requirements linking with Requirements Manager
Hi Mark, There is an alternative here. The logic of your MatLab App can be implemented in m-code, and you can call those m-code...
1年以上 前 | 1
| 採用済み
回答済み
I want the a similar function as slreq.export
Hello Marawan, It is a new feature of R2023a that slreq.export can export to ReqIF. Unfortunately, this is not supported before...
I want the a similar function as slreq.export
Hello Marawan, It is a new feature of R2023a that slreq.export can export to ReqIF. Unfortunately, this is not supported before...
1年以上 前 | 1
回答済み
Where did Matlab stores a requirement set (*.slreqx file) dependencies ?
Check if you have something called Swc_MTR*.slmx. Rename it to something else and try again. That is a linkset file. Please n...
Where did Matlab stores a requirement set (*.slreqx file) dependencies ?
Check if you have something called Swc_MTR*.slmx. Rename it to something else and try again. That is a linkset file. Please n...
1年以上 前 | 0
| 採用済み
回答済み
Requirements Linking from imported excel
Hello Sherif, This is an interesting workflow. Could you please confirm the steps below: Link a requirement to a selected row ...
Requirements Linking from imported excel
Hello Sherif, This is an interesting workflow. Could you please confirm the steps below: Link a requirement to a selected row ...
1年以上 前 | 0
回答済み
Why Matlab does not see Python?
matlab uses PATH env var to find python. Your python installation is in a local path. Try this in matlab command line: getenv('...
Why Matlab does not see Python?
matlab uses PATH env var to find python. Your python installation is in a local path. Try this in matlab command line: getenv('...
2年以上 前 | 1
回答済み
problem reading HDF5 on s3
In python, you seem to use read_only flag ("r"). Maybe you want to try: H5F.open('https://dandiarchive.s3.amazonaws.com/blobs/5...
problem reading HDF5 on s3
In python, you seem to use read_only flag ("r"). Maybe you want to try: H5F.open('https://dandiarchive.s3.amazonaws.com/blobs/5...
2年以上 前 | 0
回答済み
Error on loop on multiple ASCII files
File.name only gives you the name of the file, not the path. Try: files=dir('F:\Teamdrive\TEST\**\*.ascii'); numfiles=length(f...
Error on loop on multiple ASCII files
File.name only gives you the name of the file, not the path. Try: files=dir('F:\Teamdrive\TEST\**\*.ascii'); numfiles=length(f...
3年弱 前 | 0
回答済み
Matlab plot3 line color setting
Separate them: plot3(x1',z1',y1','Color', myGreen); hold on plot3(x2',z2',y2', 'm', x3',z3',y3','b', x4',z4',y4','k');
Matlab plot3 line color setting
Separate them: plot3(x1',z1',y1','Color', myGreen); hold on plot3(x2',z2',y2', 'm', x3',z3',y3','b', x4',z4',y4','k');
3年弱 前 | 0
回答済み
Problem multiplying exponential function with negative value
Try this: t = -20:1:20; x_t = t.*(exp(-0.15*t)); plot(t, x_t)
Problem multiplying exponential function with negative value
Try this: t = -20:1:20; x_t = t.*(exp(-0.15*t)); plot(t, x_t)
3年弱 前 | 1
回答済み
Warning: Using only the real component of complex data.
j is the imaginary unit here, so x is complex. stem is not used to plot complex numbers, that is why only the real component is ...
Warning: Using only the real component of complex data.
j is the imaginary unit here, so x is complex. stem is not used to plot complex numbers, that is why only the real component is ...
3年弱 前 | 0
| 採用済み
回答済み
Loop calculation and output
You meant this: txtFiles = dir('*.txt') ; l=length(txtFiles); N = l*10 ; Bandsheet = zeros(N,8); PSDSheet1 =zeros(N,16); P...
Loop calculation and output
You meant this: txtFiles = dir('*.txt') ; l=length(txtFiles); N = l*10 ; Bandsheet = zeros(N,8); PSDSheet1 =zeros(N,16); P...
3年弱 前 | 0
| 採用済み
回答済み
Simulink Requirements Editor Default Format
Hello Nicholas, Currently these two settings can't be controlled by the user. One alternative is to use copy and paste. You c...
Simulink Requirements Editor Default Format
Hello Nicholas, Currently these two settings can't be controlled by the user. One alternative is to use copy and paste. You c...
3年弱 前 | 0
回答済み
RuntimeWarning: Couldn't find ffprobe or avprobe - defaulting to ffprobe, but may not work warn("Couldn't find ffprobe or avprobe - defaulting to ffprobe, but may not work",
Try this on matlab command line window: getenv('PATH') This will tell you what PATH matlab is using. You might need to restart...
RuntimeWarning: Couldn't find ffprobe or avprobe - defaulting to ffprobe, but may not work warn("Couldn't find ffprobe or avprobe - defaulting to ffprobe, but may not work",
Try this on matlab command line window: getenv('PATH') This will tell you what PATH matlab is using. You might need to restart...
3年弱 前 | 0
回答済み
Automatically launching an executable
Looks like a warning from Windows, not from matlab. Try to run matlab as admin.
Automatically launching an executable
Looks like a warning from Windows, not from matlab. Try to run matlab as admin.
3年弱 前 | 0
回答済み
I need to use Newton's method to solve f(x). Can any one tell me what's wrong of my code and how to improve it.
what i s your dx?
I need to use Newton's method to solve f(x). Can any one tell me what's wrong of my code and how to improve it.
what i s your dx?
3年弱 前 | 0
回答済み
Error using subprocess>_execute_child (line 1311) Python Error: FileNotFoundError: [WinError 2] The system cannot find the file specified
Most of the times, this kind of error can be fixed by setting the env var PYTHONPATH inside matlab. So figure out what file/pa...
Error using subprocess>_execute_child (line 1311) Python Error: FileNotFoundError: [WinError 2] The system cannot find the file specified
Most of the times, this kind of error can be fixed by setting the env var PYTHONPATH inside matlab. So figure out what file/pa...
3年弱 前 | 0
回答済み
how to set x-axis and y-axis of a plot as log scales in bold with latex interpreter?
How about these: ax = gca; ax.XAxis.FontWeight='bold'; ax.XAxis.Scale = 'log';
how to set x-axis and y-axis of a plot as log scales in bold with latex interpreter?
How about these: ax = gca; ax.XAxis.FontWeight='bold'; ax.XAxis.Scale = 'log';
3年弱 前 | 0
回答済み
how to find the nearest value (if a value is already provided) from a given array?
Try this: x=0.61; m=linspace(0,1,9); [a, b] = min(abs(m-x)); m(b)
how to find the nearest value (if a value is already provided) from a given array?
Try this: x=0.61; m=linspace(0,1,9); [a, b] = min(abs(m-x)); m(b)
3年弱 前 | 0
| 採用済み
回答済み
hi i have vector for i and this equation : i= (K1*V+(K2*V^0.5)) and amount of V in known. how can i found K1 and K2?
If I and V are vectors, you can just call solve to do the job: I = [1 2]; V = [3 4]; syms K1 syms K2 eq = I == (K1.*V+(K2.*...
hi i have vector for i and this equation : i= (K1*V+(K2*V^0.5)) and amount of V in known. how can i found K1 and K2?
If I and V are vectors, you can just call solve to do the job: I = [1 2]; V = [3 4]; syms K1 syms K2 eq = I == (K1.*V+(K2.*...
3年弱 前 | 0
回答済み
plot from ode45
Too many errors in your code. I tried to clean some, but it still has trouble to figure out what y is: function kk1 clear...
plot from ode45
Too many errors in your code. I tried to clean some, but it still has trouble to figure out what y is: function kk1 clear...
3年弱 前 | 0
回答済み
Automatically loading the .mat file
For "automatically loading", you most likely mean generating the file names in a loop? Try this: num_case = 26; files={}; fo...
Automatically loading the .mat file
For "automatically loading", you most likely mean generating the file names in a loop? Try this: num_case = 26; files={}; fo...
3年弱 前 | 0
回答済み
How do I print one variable from solve() ?
Just do disp(A); disp(B); Or a complete script: syms A syms B primereq = 18 * A - 8 * B == 0; segundaeq = -1 * A - 18 ...
How do I print one variable from solve() ?
Just do disp(A); disp(B); Or a complete script: syms A syms B primereq = 18 * A - 8 * B == 0; segundaeq = -1 * A - 18 ...
3年弱 前 | 1
| 採用済み
回答済み
Can I take data while setting them
Not sure how useful the command you proposed is. If you create first a=rand(4) and then take 8 of them as a(:,2:3), the rest 8...
Can I take data while setting them
Not sure how useful the command you proposed is. If you create first a=rand(4) and then take 8 of them as a(:,2:3), the rest 8...
3年弱 前 | 2
| 採用済み
回答済み
execute cell content as lines of command in Matlab
Try this first from matlab command line window: pe = pyenv This will tell you what python env is used by your matlab installat...
execute cell content as lines of command in Matlab
Try this first from matlab command line window: pe = pyenv This will tell you what python env is used by your matlab installat...
3年弱 前 | 0
回答済み
File selection using uigetfile in an App in appdesigner
uigetfile in general is put in a callback for a button, as mentioned by Michael. The ValueChanged callback of a textbox is not a...
File selection using uigetfile in an App in appdesigner
uigetfile in general is put in a callback for a button, as mentioned by Michael. The ValueChanged callback of a textbox is not a...
3年弱 前 | 0
回答済み
I receive the output "Empty sym: 0-by-1"
Ok, the coefficients are the same for both equations. You basically have A*C_1+B*C_2+C ==0 and A*C_1+B*C2+D ==0. These two stra...
I receive the output "Empty sym: 0-by-1"
Ok, the coefficients are the same for both equations. You basically have A*C_1+B*C_2+C ==0 and A*C_1+B*C2+D ==0. These two stra...
3年弱 前 | 1
| 採用済み