社区资料

photo

穆罕默德·阿布瓦利(Mohammad Abouali)


Michigan State University

Active since 2012

Statistics

全部
  • 5星银河级4
  • 个人最佳下载级别2
  • 首次审查
  • First Submission
  • 6 Month Streak
  • 感恩3级
  • Pro
  • 知识渊博的5级
  • First Answer
  • 求解器

查看徽章

Content Feed

查看

Question


缓慢读取和低磁盘活动
Hi, I am doing a readtable() on a big file. However, I don't see much of a disk activity. The files loads but at a much slowe...

3years ago | 1 answer | 0

1

answer

Submitted


Clip Raster By Polygon
通过多边形剪辑栅格,并提取某些统计数据

5年前|5个下载|

Answered
带有嘈杂数据的梯度下降
Try one of the optimization methods in the global optimization toolbox, such as

5年前|0

Answered
How to create finer mesh with material distributions?
You can use . Something like this should work. % Initia...

5年前|0

|公认

Answered
对匹配值执行数学操作
一种方法是:mask =(a(:,2)== 21);%执行操作并将其存储回A:%蒙版两次,...

5年前|0

|公认

Answered
如何更改整数格式
fprintf('%0.2D \ n',2)02 fprintf('%0.2d \ n',3)03 fprintf('%0.4D \ n',3)0003

5年前|0

|公认

Question


Where should I report a bug that I find in MATLAB?
Hi, If I think I have found a bug in MATLAB where should I report it? Here is one in Mapping Toolbox: Let's Say I have ...

5年前|3个答案|1

3

答案

Question


Issue with launching Parallel Workers when using TORQUE or PBS
Hi, I am attaching the full output of MATLAB when trying to set useParallel option of GA to true. This been causing some t...

5年前|1答案|0

1

answer

Answered
what is the average i have data like
% I assume you have your data in a row x = [1 1.2 1 1.3 1 1.5 3 1.4 3 1.6 3 1.8 3 1.9 4 1.2 4 1.7 4 0.9]; % change i...

5年前|1

|公认

解决了


排序最低?
返回1如果输入从最高到最低排序,则返回1,如果不是,则返回。示例:1:7-> 0 [7 5 2] - > 1

6年前

Answered
Reading data from a multiple csv's in a folder and read until end of a specific column and not starting from top of the file
could you upload a sample CSV file! note that *pos* and *time* are both overwritten in each loop. So what's their purpose? ...

6年前|0

|公认

Answered
How do I multiply matrices using multiple GPU?
好吧,首先,XGS_C和XG_C都是单元格数组。 ac ...

6年前|1

|公认

Question


最后条款在try-catch中
Just making sure MATLAB Try/Catch does not have the "finally" block? Correct? I am simulating the behavior using somethin...

6年前|2个答案|0

2

答案

Answered
所有可能的组合和方程分析
a=[1,2]; b=[2,3]; c=[1,4]; % Getting all the combinations [x1,x2,x3]=ndgrid(a,b,c); % reshaping them as...

6年前|1

|公认

Answered
在图像中找到实际距离。
类似的方法应该起作用:i = imread('p3290337.jpg');i = padarray(i,[1 1 0],0);阈值= 15;mask =〜(i(:... ...)

6年前|0

|公认

Question


Possible bug in struct2table()
当我尝试使用

6年前|2个答案|0

2

答案

Answered
How can I transform 3-dimensional netCDF data to a 2-dimensional table efficiently
I think you are better off keeping it 3D as it is. Here is how you can calculate some of the stuff you asked very easilly. As...

6年前|1

|公认

Answered
what is different between fget1 and fread ?
我认为Enviread不是Mathworks提供的功能。看来用户提供了它。尝试

6年前|0

|公认

Answered
在两个阶层上平均创建变量
首先转换您的日期,以便您分别获得年度和月份。如果您的日期为字符串,则可以使用

6年前|0

|公认

Answered
how can I delete the related raw in B?
A=[3,0.003;1,0.025;2,0.03] A = 3 0.003 1 0.025 2 0.03 B=[1,75;2,102;3,63] B = 1 ...

6年前|0

|公认

解决了


Add two numbers
Given a and b, return the sum a+b in c.

6年前

Question


未知数的输出变量
有一些功能支持变量的输出变量。金宝app例如,

6年前| 1 | 0回答

1

answer

Answered
循环到矩阵
Don't need a for loop. Do it like this: V1=49:2:99; V2=zeros(1,numel(V1)); V3=50*ones(1,numel(V1)); b=[V1;V2;V...

6年前|2

|公认

Answered
different set of subplot with loop
对于i = 1:3的j = 1:6%计算子图(2,3,j);%绘图命令结束

6年前|0

|公认

Answered
Read specific 2D matrix from 3D matrix variable from netCDF....
要读取MXN的矩阵,其第三维的矩阵在[1,p] in [1,p] in the:data = netcdf.getvar(ncid,varid,[1,1,r],[m n 1])...

6年前|1

|公认

Answered
并行运行两个功能,其中一个想使用parfor
使用非块

6年前|3

|公认

Answered
Is there an alternative to parfor?
Couple of notes here: *NOTE 1* instead of only parallelizing the inner for-loop you can parallelize all of them as follow: ...

6年前|0

|公认

Answered
Adding a second for loop to create different matrices
Yes, there is a way; but (really really) not recommended: (why not, refer to Stephens answer) But if you insist, here is how you...

6年前|0

|公认

Answered
如何获得向量包含其他向量的平均值
v=[26 196 27 196 28 196]; v1=[mean(v(1:2:end)) mean(v(2:2:end))] v1 = 27 196 You really need to have...

6年前|0

|公认

Load more