Community Profile

照片

Mohammad Sami


Last seen: 3 días ago|自2014年以来活跃

统计数据

All
  • 24个月连胜
  • Indexing II Master
  • Introduction to MATLAB Master
  • Community Group Solver
  • Knowledgeable Level 5
  • Pro
  • 复兴级别2
  • 第一个答案
  • 速度恶魔
  • Solver

View badges

内容提要

View by

回答
如何增加图中轴壁虱之间的间距
since your data is only between 62.4 and 62.6, you can limit your y axis to these values using the ylim function. fakedata = [l...

3días以前|0

|accepted

回答
将数组添加到一个循环中的单元格中
你当前的代码创建一个嵌套单元阵列。You can change it as follows. % for testing % i = 1; x_wing = 1; y_wing ...

3 MESE前|1

|accepted

回答
在HTTPS / API请求之后,有没有办法获得重定向URL?
您可以使用matlab.net.http接口遵循重定向。https://www.tianjin-qmedu.com/help/matlab/ref/matlab.net.http.re ...

4 meses ago | 2

|accepted

回答
如何从重定向链接中获取最终URL?(例如python的requests.get)?
您可以使用matlab.net.http接口遵循重定向。https://www.tianjin-qmedu.com/help/matlab/ref/matlab.net.http.re ...

4 meses ago | 0

回答
大家好!runnig此代码时,我遇到了一个错误。“”错误设置属性'App2'的类'AlturaactualEditfield':无法将双值3.79215转换为句柄”
您需要将其分配给Editfield的值,然后将其分配给编辑字段本身App.alturaactualeditfield.value = Math(cont); ...

4 meses ago | 0

|accepted

回答
比较两个大小不同的阵列
The best way to do what you are requesting is to convert your arrays to timetables and then either use the synchronize function ...

5 meses ago | 0

回答
Looking for a function minimizer subject to nonlinear constraints with absolute function tolerance.
您可以尝试在“最佳集”中设置“ Tolfun”参数。您可以参考以下文档以获取更多详细信息htt ...

5 meses ago | 0

回答
MATLAB app designer, how to update value of a property in declared callback function
您可以尝试以下内容。configurecallback(app.arduino,“ terminator”,@app.readserialdata)

6 MESE |0

回答
How to declare variable in App Designer
Do you mean you want to set the value of A equal to the value of edit field ? app.A = app.EditField.Value;

7 Meses以前|0

回答
How to set defaults for GridLayout?
在这种情况下,我相信更改默认列间距的唯一方法是编辑由MATLAB发货的代码。

7 Meses以前|0

回答
静态Java方法不会使用PARFOR循环执行
动态Java类路径仅在调用JavaAddPath的过程中进行修改。因此,对于并行,您将不得不添加J ...

8 MESE前|1

|accepted

回答
How to change automatically generated uibutton properties in another function?
您可以将所有按钮存储在App属性AprientationButtons中。函数create_buttons(app)%%make b ...

8 MESE前|0

|accepted

回答
How to change training and plotting options when training a deep network?
从MATLAB文档中,您只能在指定验证数据时使用此选项。https://nl.mathworks.com/help ...

8 MESE前|0

回答
如何在深度神经网络层中写下自己的损失功能。
You can first check if the loss function is already available in Matlab here. //www.tianjin-qmedu.com/help/deeplearning/ug/de...

9 MESE |0

|accepted

回答
Replace stale / repeating data with NaN in a table
You can try this. Var1 = [ 3 , 2, 5, 4, 4 , 4, 4, 6, 2, 3 , 5, 5 ,5 ,5 ]; i = Var1(2:end) == Var1(1:end-1); i = [false i]; V...

10 Meses以前|0

回答
如何将Parpool用于独立表达
您可以使用Palfeval函数在工作线程上进行这些计算。x = 1;y = 2;z = 3;p = parpool('local',4)fs ...

10 Meses以前|1

|accepted

回答
This is a part of a code and I want to add something to it, description below
In your code Heff(:,P==0) = []; %Delete User Row This will actually delete columns not rows in Heff. Not sure if that is what ...

10 Meses以前|0

|accepted

回答
How to save output of double loop?
你应该使用fullfile函数来创建filepath. Your call to imwrite function is in the outer for loop, hence it wi...

10 Meses以前|1

|accepted

回答
How to make a colourful interactive GUI spectrum slider?
While there is no slider object which have the spectrum as the background, you can however achieve this effect by layering uisli...

10 Meses以前|0

回答
How to import and evaluate multiple files in matlab?
I am assuming all your data files have the same format. You should convert your current code into a function and call it 3 times...

10 Meses以前|0

回答
Plot two functions with different pause rates at same time.
You can try something like plotting j every few steps. frames = 239; trunk = 2987; hold on lastjplotted = 0; for i = 1:tr...

10 Meses以前|0

|accepted

回答
Onehotencode function is giving more columns which are filled with zeros than the number of categories.
Because you are converting the entire matrix in to a categorical matrix, the categories for the entire matrix are common. If you...

10 Meses以前|1

|accepted

回答
将组件放在应用程序设计师的前面
If you only wish to display the image and not interact with it (eg zoom) then perhaps you can use uiimage to display your image ...

11 MESE |0

回答
accessing tall cell arrays of type char
完成数据上的所有操作后,您将需要使用收集功能。a =高({{'aa''bb''cc';'dd''e ...

12 Meses以前|0

回答
Saving data in a GUI callback function
使用应用程序设计师,您不需要Guidata和Hobject来存储数据。在应用程序中创建属性,然后您可以访问...

12 Meses以前|0

|accepted

回答
MATLAB APP数字框无法实时更新
include the drawnow command in your loop to force an update to the UI. //www.tianjin-qmedu.com/help/matlab/ref/drawnow.html ...

12 Meses以前|0

|accepted

回答
Subtract element one from element two in a 1x101 row vector.
您可以在1:end-1和2:结束时使用子集,而无需使用for循环。t = rand(1,101);tsub = t(2:end)-t(1:...

12 Meses以前|0

回答
汇编过程中令人困惑的警告:警告:MATLAB偏好条目“ SMTP_USERNAME”已被删除。
This is the correct behaviour for security reasons. Otherwise this information will be included from the previously set values i...

alrededor de 1 año ago | 0

回答
Delete outliers in each column of a matrix
You can simplify your code like this. % generate test data initmatrix = rand(100,100); initmatrix(12,99) = 1000; initmatrix(...

alrededor de 1 año ago | 0

回答
imwrite,它对分数和负值的作用
您可以更改为使用随机整数函数而不是rand函数。还将图像格式更改为PNG而不是JPG。...

alrededor de 1 año ago | 0

装载更多