Month: August 2024
Please help me to run surf plot with bvp4c.
Please help me to run surf plot with bvp4c.The surfce digram consists of (constant Prf [2 :1:6] represents y-axis & vector>> sol.x [0 4] represents x-axis (m = linspace(0,4);) & second solution only sol.y(6,:) represents z-axis).The following is the code for 2D (sol.x [0 4] and only sol.y(6,:)). How to give command for making surf plot in bvp4c.
proj()
function sol= proj
clc;clf;clear;
%Relation of base fluid
rhof=1;kf=0.613*10^5;cpf=4179*10^4;muf=10^-3*10;sigf=0.05*10^-8;alfaf=kf/(rhof*cpf);
%FE3O4
ph1=0.01;rho1=5180*10^-3;cp1=670*10^4;k1=9.7*10^5;sig1=0.74*10^-2;
%copper
ph2=0.01;rho2=8933*10^-3;cp2=385*10^4;k2=401*10^5;sig2=5.96*10^-1;
%Relation of hyprid
m=5.7;
kh=kf*((k1+(m-1)*kf-(m-1)*ph1*(kf-k1))/((k1+(m-1)*kf+ph1*(kf-k1))))*((k2+(m-1)*kf-(m-1)*ph2*(kf-k2))/((k2+(m-1)*kf+ph2*(kf-k2))));
muh= muf/((1-ph1)^2.5*(1-ph2)^2.5);
rhoh=rhof*(1-ph2)*((1-ph1)+ph1*(rho1/rhof))+ph2*rho2;
v1 =rhof*cpf*(1-ph2)*((1-ph1)+ph1*((rho1*cp1)/(rho2*cp2)))+ph2*(rho2*cp2);
sigh=sigf+(3*((ph1*sig1+ph2*sig2)-sigf*(ph1+ph2))/(((ph1*sig1+ph2*sig2)/(sigf*(ph1+ph2)))+2-((ph1*sig1+ph2*sig2)/sigf)+(ph1+ph2)));
alfah=kh/v1;
myLegend1 = {};
rr = [4 5 6 7]
for i =1:numel(rr)
Prf = rr(i);
Nr=0.1;
gamma=pi/3;
a=1;b=0.1;v=1;u=1;
M=3;
Nt=1;Nb=1; sc=0.6;s1=1;s2=1;
p=-0.5; L=(muf/rhof);L1=L^(p);
Tw=273+50;Ti=273+27;deltaT=Tw-Ti;
Lf=rhof*kf;
y0 = [1,0,1,0,0,1,0,1,0];
options =bvpset(‘stats’,’on’,’RelTol’,1e-4);
m = linspace(0,4);
solinit = bvpinit(m,y0);
sol= bvp4c(@projfun,@projbc,solinit,options);
disp((sol.y(1,20)))
figure(1)
plot(sol.x,(sol.y(6,:)))
% axis([0 4 0 1])
grid on,hold on
myLegend1{i}=[‘Pr = ‘,num2str(rr(i))];
i=i+1;
end
figure(1)
legend(myLegend1)
hold on
function dy= projfun(~,y)
dy= zeros(9,1);
% alignComments
E = y(1);
dE = y(2);
F = y(3);
dF= y(4);
W = y(5);
t = y(6);
dt = y(7);
phi = y(8);
dphi = y(9);
dy(1) = dE;
dy(2) = (rhoh/muh)*((((a*u)/L1^(2)))*E^2+(1/L1)*W*dE+((sigh/sigf)/(rhoh/rhof))*(1/L1^2)*M*E*sin(gamma)*sin(gamma));
dy(3) = dF;
dy(4) = (rhoh/muh)*((((b*v)/L1^(2)))*F^2+(1/L1)*W*dF+((sigh/sigf)/(rhoh/rhof))*(1/L1^2)*M*F*sin(gamma)*sin(gamma));
dy(5) = -(1/L1)*(u*a*E+b*v*F);
dy(6) = dt;
dy(7) =(Prf*(rhof/muf))*(1/(Nr+(kh/kf)))*(((v1)/(rhof*cpf))*(1/L1)*W*dt-(muh/(rhof*cpf))*(L1/s1)*(1/deltaT)*(-(1/L1)*(u*a*E+b*v*F))^2);
dy(8)= dphi;
dy(9)=(sc/L^(p+1))*W*dphi-(s1/s2)*(Nt/Nb)*(((Prf*(rhof/muf)))*(1/(Nr+(kh/kf)))*(((v1)/(rhof*cpf))*(1/L1)*W*dt-(muh/(rhof*cpf))*(L1/s1)*(1/deltaT)*(-(1/L1)*(u*a*E+b*v*F))^2));
end
end
function res= projbc(ya,yb)
res= [ya(1)-1;
ya(3)-1;
ya(5)-0;
ya(6)-1;
ya(8)-1;
yb(1);
yb(3);
yb(6);
yb(8)];
endPlease help me to run surf plot with bvp4c.The surfce digram consists of (constant Prf [2 :1:6] represents y-axis & vector>> sol.x [0 4] represents x-axis (m = linspace(0,4);) & second solution only sol.y(6,:) represents z-axis).The following is the code for 2D (sol.x [0 4] and only sol.y(6,:)). How to give command for making surf plot in bvp4c.
proj()
function sol= proj
clc;clf;clear;
%Relation of base fluid
rhof=1;kf=0.613*10^5;cpf=4179*10^4;muf=10^-3*10;sigf=0.05*10^-8;alfaf=kf/(rhof*cpf);
%FE3O4
ph1=0.01;rho1=5180*10^-3;cp1=670*10^4;k1=9.7*10^5;sig1=0.74*10^-2;
%copper
ph2=0.01;rho2=8933*10^-3;cp2=385*10^4;k2=401*10^5;sig2=5.96*10^-1;
%Relation of hyprid
m=5.7;
kh=kf*((k1+(m-1)*kf-(m-1)*ph1*(kf-k1))/((k1+(m-1)*kf+ph1*(kf-k1))))*((k2+(m-1)*kf-(m-1)*ph2*(kf-k2))/((k2+(m-1)*kf+ph2*(kf-k2))));
muh= muf/((1-ph1)^2.5*(1-ph2)^2.5);
rhoh=rhof*(1-ph2)*((1-ph1)+ph1*(rho1/rhof))+ph2*rho2;
v1 =rhof*cpf*(1-ph2)*((1-ph1)+ph1*((rho1*cp1)/(rho2*cp2)))+ph2*(rho2*cp2);
sigh=sigf+(3*((ph1*sig1+ph2*sig2)-sigf*(ph1+ph2))/(((ph1*sig1+ph2*sig2)/(sigf*(ph1+ph2)))+2-((ph1*sig1+ph2*sig2)/sigf)+(ph1+ph2)));
alfah=kh/v1;
myLegend1 = {};
rr = [4 5 6 7]
for i =1:numel(rr)
Prf = rr(i);
Nr=0.1;
gamma=pi/3;
a=1;b=0.1;v=1;u=1;
M=3;
Nt=1;Nb=1; sc=0.6;s1=1;s2=1;
p=-0.5; L=(muf/rhof);L1=L^(p);
Tw=273+50;Ti=273+27;deltaT=Tw-Ti;
Lf=rhof*kf;
y0 = [1,0,1,0,0,1,0,1,0];
options =bvpset(‘stats’,’on’,’RelTol’,1e-4);
m = linspace(0,4);
solinit = bvpinit(m,y0);
sol= bvp4c(@projfun,@projbc,solinit,options);
disp((sol.y(1,20)))
figure(1)
plot(sol.x,(sol.y(6,:)))
% axis([0 4 0 1])
grid on,hold on
myLegend1{i}=[‘Pr = ‘,num2str(rr(i))];
i=i+1;
end
figure(1)
legend(myLegend1)
hold on
function dy= projfun(~,y)
dy= zeros(9,1);
% alignComments
E = y(1);
dE = y(2);
F = y(3);
dF= y(4);
W = y(5);
t = y(6);
dt = y(7);
phi = y(8);
dphi = y(9);
dy(1) = dE;
dy(2) = (rhoh/muh)*((((a*u)/L1^(2)))*E^2+(1/L1)*W*dE+((sigh/sigf)/(rhoh/rhof))*(1/L1^2)*M*E*sin(gamma)*sin(gamma));
dy(3) = dF;
dy(4) = (rhoh/muh)*((((b*v)/L1^(2)))*F^2+(1/L1)*W*dF+((sigh/sigf)/(rhoh/rhof))*(1/L1^2)*M*F*sin(gamma)*sin(gamma));
dy(5) = -(1/L1)*(u*a*E+b*v*F);
dy(6) = dt;
dy(7) =(Prf*(rhof/muf))*(1/(Nr+(kh/kf)))*(((v1)/(rhof*cpf))*(1/L1)*W*dt-(muh/(rhof*cpf))*(L1/s1)*(1/deltaT)*(-(1/L1)*(u*a*E+b*v*F))^2);
dy(8)= dphi;
dy(9)=(sc/L^(p+1))*W*dphi-(s1/s2)*(Nt/Nb)*(((Prf*(rhof/muf)))*(1/(Nr+(kh/kf)))*(((v1)/(rhof*cpf))*(1/L1)*W*dt-(muh/(rhof*cpf))*(L1/s1)*(1/deltaT)*(-(1/L1)*(u*a*E+b*v*F))^2));
end
end
function res= projbc(ya,yb)
res= [ya(1)-1;
ya(3)-1;
ya(5)-0;
ya(6)-1;
ya(8)-1;
yb(1);
yb(3);
yb(6);
yb(8)];
end Please help me to run surf plot with bvp4c.The surfce digram consists of (constant Prf [2 :1:6] represents y-axis & vector>> sol.x [0 4] represents x-axis (m = linspace(0,4);) & second solution only sol.y(6,:) represents z-axis).The following is the code for 2D (sol.x [0 4] and only sol.y(6,:)). How to give command for making surf plot in bvp4c.
proj()
function sol= proj
clc;clf;clear;
%Relation of base fluid
rhof=1;kf=0.613*10^5;cpf=4179*10^4;muf=10^-3*10;sigf=0.05*10^-8;alfaf=kf/(rhof*cpf);
%FE3O4
ph1=0.01;rho1=5180*10^-3;cp1=670*10^4;k1=9.7*10^5;sig1=0.74*10^-2;
%copper
ph2=0.01;rho2=8933*10^-3;cp2=385*10^4;k2=401*10^5;sig2=5.96*10^-1;
%Relation of hyprid
m=5.7;
kh=kf*((k1+(m-1)*kf-(m-1)*ph1*(kf-k1))/((k1+(m-1)*kf+ph1*(kf-k1))))*((k2+(m-1)*kf-(m-1)*ph2*(kf-k2))/((k2+(m-1)*kf+ph2*(kf-k2))));
muh= muf/((1-ph1)^2.5*(1-ph2)^2.5);
rhoh=rhof*(1-ph2)*((1-ph1)+ph1*(rho1/rhof))+ph2*rho2;
v1 =rhof*cpf*(1-ph2)*((1-ph1)+ph1*((rho1*cp1)/(rho2*cp2)))+ph2*(rho2*cp2);
sigh=sigf+(3*((ph1*sig1+ph2*sig2)-sigf*(ph1+ph2))/(((ph1*sig1+ph2*sig2)/(sigf*(ph1+ph2)))+2-((ph1*sig1+ph2*sig2)/sigf)+(ph1+ph2)));
alfah=kh/v1;
myLegend1 = {};
rr = [4 5 6 7]
for i =1:numel(rr)
Prf = rr(i);
Nr=0.1;
gamma=pi/3;
a=1;b=0.1;v=1;u=1;
M=3;
Nt=1;Nb=1; sc=0.6;s1=1;s2=1;
p=-0.5; L=(muf/rhof);L1=L^(p);
Tw=273+50;Ti=273+27;deltaT=Tw-Ti;
Lf=rhof*kf;
y0 = [1,0,1,0,0,1,0,1,0];
options =bvpset(‘stats’,’on’,’RelTol’,1e-4);
m = linspace(0,4);
solinit = bvpinit(m,y0);
sol= bvp4c(@projfun,@projbc,solinit,options);
disp((sol.y(1,20)))
figure(1)
plot(sol.x,(sol.y(6,:)))
% axis([0 4 0 1])
grid on,hold on
myLegend1{i}=[‘Pr = ‘,num2str(rr(i))];
i=i+1;
end
figure(1)
legend(myLegend1)
hold on
function dy= projfun(~,y)
dy= zeros(9,1);
% alignComments
E = y(1);
dE = y(2);
F = y(3);
dF= y(4);
W = y(5);
t = y(6);
dt = y(7);
phi = y(8);
dphi = y(9);
dy(1) = dE;
dy(2) = (rhoh/muh)*((((a*u)/L1^(2)))*E^2+(1/L1)*W*dE+((sigh/sigf)/(rhoh/rhof))*(1/L1^2)*M*E*sin(gamma)*sin(gamma));
dy(3) = dF;
dy(4) = (rhoh/muh)*((((b*v)/L1^(2)))*F^2+(1/L1)*W*dF+((sigh/sigf)/(rhoh/rhof))*(1/L1^2)*M*F*sin(gamma)*sin(gamma));
dy(5) = -(1/L1)*(u*a*E+b*v*F);
dy(6) = dt;
dy(7) =(Prf*(rhof/muf))*(1/(Nr+(kh/kf)))*(((v1)/(rhof*cpf))*(1/L1)*W*dt-(muh/(rhof*cpf))*(L1/s1)*(1/deltaT)*(-(1/L1)*(u*a*E+b*v*F))^2);
dy(8)= dphi;
dy(9)=(sc/L^(p+1))*W*dphi-(s1/s2)*(Nt/Nb)*(((Prf*(rhof/muf)))*(1/(Nr+(kh/kf)))*(((v1)/(rhof*cpf))*(1/L1)*W*dt-(muh/(rhof*cpf))*(L1/s1)*(1/deltaT)*(-(1/L1)*(u*a*E+b*v*F))^2));
end
end
function res= projbc(ya,yb)
res= [ya(1)-1;
ya(3)-1;
ya(5)-0;
ya(6)-1;
ya(8)-1;
yb(1);
yb(3);
yb(6);
yb(8)];
end surf, surface, bvp4c MATLAB Answers — New Questions
Separate data to plot as multiple lines
It has been a while since I have touched matlab, and as such I can’t quite figure out how to solve this issue. Essentially, I have data being created to monitor a device. This data is in an excel sheet, and I have imported that excel sheet into matlab. The table is then parsed to only include certain data for creation of each plot. My problem is when plotting the table, which has multiple runs included. An example of such I will be including below:
run time var1
0 0 0
0 1 1
0 2 …
1 3 …
1 4 …
2 5 …
3 6 50
My question is how would I split this data so that I can plot each run as a seperate line on the same graph? So in this case, it would be a line plot showing the 4 runs (0-3) as separate lines, comparing time to the change in the variables. Thank you.It has been a while since I have touched matlab, and as such I can’t quite figure out how to solve this issue. Essentially, I have data being created to monitor a device. This data is in an excel sheet, and I have imported that excel sheet into matlab. The table is then parsed to only include certain data for creation of each plot. My problem is when plotting the table, which has multiple runs included. An example of such I will be including below:
run time var1
0 0 0
0 1 1
0 2 …
1 3 …
1 4 …
2 5 …
3 6 50
My question is how would I split this data so that I can plot each run as a seperate line on the same graph? So in this case, it would be a line plot showing the 4 runs (0-3) as separate lines, comparing time to the change in the variables. Thank you. It has been a while since I have touched matlab, and as such I can’t quite figure out how to solve this issue. Essentially, I have data being created to monitor a device. This data is in an excel sheet, and I have imported that excel sheet into matlab. The table is then parsed to only include certain data for creation of each plot. My problem is when plotting the table, which has multiple runs included. An example of such I will be including below:
run time var1
0 0 0
0 1 1
0 2 …
1 3 …
1 4 …
2 5 …
3 6 50
My question is how would I split this data so that I can plot each run as a seperate line on the same graph? So in this case, it would be a line plot showing the 4 runs (0-3) as separate lines, comparing time to the change in the variables. Thank you. plot, table MATLAB Answers — New Questions
IVI connection to Rigol DMM
Hi All… I have been attempting to connect a Rigol DM3068 DMM to Matlab. The driver from the manufacturer has been installed. I have spent many hours going down a rabbit hole of pages that links to more links, along with processes that leads to depreciated functions and errors. Below shows the current state of my attempts.
I’m now rather confused on the actual process. It would be ideal to find an example of how to generate the wrapper and link the driver to Matlab with current functions.
>> instrhwinfo
ans =
HardwareInfo with properties:
MATLABVersion: ‘9.14 (R2023a)’
SupportedInterfaces: {‘gpib’ ‘serial’ ‘serialport’ ‘tcpip’ ‘udp’ ‘visa’ ‘Bluetooth’ ‘i2c’ ‘spi’}
SupportedDrivers: {‘matlab’ ‘ivi’ ‘vxipnp’}
ToolboxName: ‘Instrument Control Toolbox’
ToolboxVersion: ‘4.8 (R2023a)’
>> ividriverlist
ans =
1×4 table
VendorDriver MATLABDriver IVIClass SupportedModels
____________ ____________ ________ _______________
1 "rgdm3068" "" "IVIDmm" {["DM3068"]}
>> configStore = iviconfigurationstore;
>> add(configStore,"HardwareAsset","myDMMHWAsset2","TCPIP0::192.168.1.120::INSTR");
>> add(configStore,"DriverSession","myDMMSession2","rgdm3068","myDMMHWAsset2");
>> add(configStore,"LogicalName","myDMM2","myDMMSession2");
>> commit(configStore);
>> dev = ividev("IviDMM2","myDMM2");
No ividev MATLAB drivers found for your hardware.
>> instrhwinfo(‘ivi’)
ans =
HardwareInfo with properties:
LogicalNames: {‘myDMM’ ‘myDMM2’}
Modules: {1×13 cell}
ConfigurationServerVersion: ‘1.7.0.12115’
ConfigurationStoreLocation: ‘C:ProgramDataIVI FoundationIVIIviConfigurationStore.xml’
IVIRootPath: ‘C:Program FilesIVI FoundationIVI’Hi All… I have been attempting to connect a Rigol DM3068 DMM to Matlab. The driver from the manufacturer has been installed. I have spent many hours going down a rabbit hole of pages that links to more links, along with processes that leads to depreciated functions and errors. Below shows the current state of my attempts.
I’m now rather confused on the actual process. It would be ideal to find an example of how to generate the wrapper and link the driver to Matlab with current functions.
>> instrhwinfo
ans =
HardwareInfo with properties:
MATLABVersion: ‘9.14 (R2023a)’
SupportedInterfaces: {‘gpib’ ‘serial’ ‘serialport’ ‘tcpip’ ‘udp’ ‘visa’ ‘Bluetooth’ ‘i2c’ ‘spi’}
SupportedDrivers: {‘matlab’ ‘ivi’ ‘vxipnp’}
ToolboxName: ‘Instrument Control Toolbox’
ToolboxVersion: ‘4.8 (R2023a)’
>> ividriverlist
ans =
1×4 table
VendorDriver MATLABDriver IVIClass SupportedModels
____________ ____________ ________ _______________
1 "rgdm3068" "" "IVIDmm" {["DM3068"]}
>> configStore = iviconfigurationstore;
>> add(configStore,"HardwareAsset","myDMMHWAsset2","TCPIP0::192.168.1.120::INSTR");
>> add(configStore,"DriverSession","myDMMSession2","rgdm3068","myDMMHWAsset2");
>> add(configStore,"LogicalName","myDMM2","myDMMSession2");
>> commit(configStore);
>> dev = ividev("IviDMM2","myDMM2");
No ividev MATLAB drivers found for your hardware.
>> instrhwinfo(‘ivi’)
ans =
HardwareInfo with properties:
LogicalNames: {‘myDMM’ ‘myDMM2’}
Modules: {1×13 cell}
ConfigurationServerVersion: ‘1.7.0.12115’
ConfigurationStoreLocation: ‘C:ProgramDataIVI FoundationIVIIviConfigurationStore.xml’
IVIRootPath: ‘C:Program FilesIVI FoundationIVI’ Hi All… I have been attempting to connect a Rigol DM3068 DMM to Matlab. The driver from the manufacturer has been installed. I have spent many hours going down a rabbit hole of pages that links to more links, along with processes that leads to depreciated functions and errors. Below shows the current state of my attempts.
I’m now rather confused on the actual process. It would be ideal to find an example of how to generate the wrapper and link the driver to Matlab with current functions.
>> instrhwinfo
ans =
HardwareInfo with properties:
MATLABVersion: ‘9.14 (R2023a)’
SupportedInterfaces: {‘gpib’ ‘serial’ ‘serialport’ ‘tcpip’ ‘udp’ ‘visa’ ‘Bluetooth’ ‘i2c’ ‘spi’}
SupportedDrivers: {‘matlab’ ‘ivi’ ‘vxipnp’}
ToolboxName: ‘Instrument Control Toolbox’
ToolboxVersion: ‘4.8 (R2023a)’
>> ividriverlist
ans =
1×4 table
VendorDriver MATLABDriver IVIClass SupportedModels
____________ ____________ ________ _______________
1 "rgdm3068" "" "IVIDmm" {["DM3068"]}
>> configStore = iviconfigurationstore;
>> add(configStore,"HardwareAsset","myDMMHWAsset2","TCPIP0::192.168.1.120::INSTR");
>> add(configStore,"DriverSession","myDMMSession2","rgdm3068","myDMMHWAsset2");
>> add(configStore,"LogicalName","myDMM2","myDMMSession2");
>> commit(configStore);
>> dev = ividev("IviDMM2","myDMM2");
No ividev MATLAB drivers found for your hardware.
>> instrhwinfo(‘ivi’)
ans =
HardwareInfo with properties:
LogicalNames: {‘myDMM’ ‘myDMM2’}
Modules: {1×13 cell}
ConfigurationServerVersion: ‘1.7.0.12115’
ConfigurationStoreLocation: ‘C:ProgramDataIVI FoundationIVIIviConfigurationStore.xml’
IVIRootPath: ‘C:Program FilesIVI FoundationIVI’ ivi, rigol, instrument toolbox MATLAB Answers — New Questions
converting string to num and table
I have a table containing string data that represents cyclone certain and uncertain tracks. Each cell in the table may contain multiple track numbers (seperated by a space), where the presence of ‘x’ beside a number indicates uncertainty in that track. For example, in tempData(7,1) = "30 25x", ’30’ is a certain track, and ’25’ is uncertain.
I need to write a code that parses each cell in a column of tempData, separates the track numbers and their uncertainty markers (‘x’), and outputs a (in this case) 4-column table for each column in tempData. The headers of the output table should be track1, uncert1, track2, uncert2, corresponding to the parsed tracks and their certainty indicators (marked by 0 or 1). If the input has 3 tracks, the then output table should have a 6 column table
Finally, I want to store each output table in a cell array marked by the varname of the input column (y98, y99, y20, etc), as I need to process over 200 columns in my original data.
I have attached a sample input (tempData) and output for the first coumn that i want (tempDataOut).
Thanks in advance.I have a table containing string data that represents cyclone certain and uncertain tracks. Each cell in the table may contain multiple track numbers (seperated by a space), where the presence of ‘x’ beside a number indicates uncertainty in that track. For example, in tempData(7,1) = "30 25x", ’30’ is a certain track, and ’25’ is uncertain.
I need to write a code that parses each cell in a column of tempData, separates the track numbers and their uncertainty markers (‘x’), and outputs a (in this case) 4-column table for each column in tempData. The headers of the output table should be track1, uncert1, track2, uncert2, corresponding to the parsed tracks and their certainty indicators (marked by 0 or 1). If the input has 3 tracks, the then output table should have a 6 column table
Finally, I want to store each output table in a cell array marked by the varname of the input column (y98, y99, y20, etc), as I need to process over 200 columns in my original data.
I have attached a sample input (tempData) and output for the first coumn that i want (tempDataOut).
Thanks in advance. I have a table containing string data that represents cyclone certain and uncertain tracks. Each cell in the table may contain multiple track numbers (seperated by a space), where the presence of ‘x’ beside a number indicates uncertainty in that track. For example, in tempData(7,1) = "30 25x", ’30’ is a certain track, and ’25’ is uncertain.
I need to write a code that parses each cell in a column of tempData, separates the track numbers and their uncertainty markers (‘x’), and outputs a (in this case) 4-column table for each column in tempData. The headers of the output table should be track1, uncert1, track2, uncert2, corresponding to the parsed tracks and their certainty indicators (marked by 0 or 1). If the input has 3 tracks, the then output table should have a 6 column table
Finally, I want to store each output table in a cell array marked by the varname of the input column (y98, y99, y20, etc), as I need to process over 200 columns in my original data.
I have attached a sample input (tempData) and output for the first coumn that i want (tempDataOut).
Thanks in advance. data process MATLAB Answers — New Questions
MS Forms Survey – break down of data from responses
I have results from a survey that I did which encompassed several “regions” in our company. I have about 15 questions in the survey, but would like the data broken down by the region the person was in. Reason: I would like to see if one region is have success or difficulty in a certain area (any given question on the survey). Ex: Region A is having issues with response times version Region B is showing they have no issues with response times.
Is there a dump of the entire survey that matches respondent #15, who took the survey, and all their associated responses (even if they skipped a question)?
thank you in advance.
I have results from a survey that I did which encompassed several “regions” in our company. I have about 15 questions in the survey, but would like the data broken down by the region the person was in. Reason: I would like to see if one region is have success or difficulty in a certain area (any given question on the survey). Ex: Region A is having issues with response times version Region B is showing they have no issues with response times. Is there a dump of the entire survey that matches respondent #15, who took the survey, and all their associated responses (even if they skipped a question)? thank you in advance. Read More
Can i add 2 hours to Date/Time field inside PnP Modern Search web part
I have this formula inside PnP Modern Search web part:-
{{ getDate (getDate (slot item @root.slots.PUETA) “YYYY-MM-DDTHH:mm:ss.0000000Z”) “MMMM DD, YYYY h:mm a” 3 }}
to format a date time, and allow it to follow the time zone of the site.. my question is how i can add 2 hours to the generated date/time from the above formula?
Thanks
I have this formula inside PnP Modern Search web part:- {{ getDate (getDate (slot item @root.slots.PUETA) “YYYY-MM-DDTHH:mm:ss.0000000Z”) “MMMM DD, YYYY h:mm a” 3 }} to format a date time, and allow it to follow the time zone of the site.. my question is how i can add 2 hours to the generated date/time from the above formula?Thanks Read More
Sorry something went wrong – Please make sure you have permission to access this form.
New to forms, trying to create a survey that users in my organization can use to indicate if they’re using software. When I copy the URL and send it out, I can access the form myself as the form creator from the link, but everyone else that tries to access the form gets the error message in the title. The technical details are:
I’ve had the users try a different browser with no change. I have it set so that only people in my organization can respond as I want to record names. Not sure where else to look for access permissions. I’ve read many of the threads with the same error message and have validated that all settings should be correct for access and that the people I’m sending the form to are logged in with their business account. Any suggestions? TIA!
New to forms, trying to create a survey that users in my organization can use to indicate if they’re using software. When I copy the URL and send it out, I can access the form myself as the form creator from the link, but everyone else that tries to access the form gets the error message in the title. The technical details are:I’ve had the users try a different browser with no change. I have it set so that only people in my organization can respond as I want to record names. Not sure where else to look for access permissions. I’ve read many of the threads with the same error message and have validated that all settings should be correct for access and that the people I’m sending the form to are logged in with their business account. Any suggestions? TIA! Read More
Pinned Tabs and middle mouse button behavior
I saw a post made in 2022, with no replies, that gave the same feedback. Middle mouse button clicking shouldn’t close pinned tabs nor disable tab groups. Is there any kind of extension that can be used while devs don’t add this as default behavior?
I saw a post made in 2022, with no replies, that gave the same feedback. Middle mouse button clicking shouldn’t close pinned tabs nor disable tab groups. Is there any kind of extension that can be used while devs don’t add this as default behavior? Read More
New Site members email
I constantly have to instruct new site members how to access their SharePoint site from their email invite because it is confusing to many recipients.
I don’t know if Microsoft will see this or how to submit an idea, but it would be much more straightforward to change the link name here to “Go to SharePoint Site” or something more definitive.
Poor UI & UX design seems to be a perennial problem for Microsoft. I hope they can make this simpler.
I constantly have to instruct new site members how to access their SharePoint site from their email invite because it is confusing to many recipients. I don’t know if Microsoft will see this or how to submit an idea, but it would be much more straightforward to change the link name here to “Go to SharePoint Site” or something more definitive. Poor UI & UX design seems to be a perennial problem for Microsoft. I hope they can make this simpler. Read More
Discover the Future of AI-Powered Workforce Transformation with Microsoft Viva
We’re thrilled to invite you to the HR Tech Conference, taking place September 24-26 in Las Vegas. This premier event is considered the world’s leading conference and expo for HR and IT professionals and the perfect opportunity for you to explore the latest AI-powered innovations in HR technology to help reimagine your employee experience.
At the HR Tech Conference, you’ll have the chance to connect with thousands of HR and IT decision-makers from around the globe. This event is known for its comprehensive agenda, featuring keynote sessions, panel discussions, and hands-on workshops led by industry experts. Whether you’re looking to stay ahead of the latest trends, network with peers, or discover new solutions to enhance your organization’s HR practices, the HR Tech Conference has something for everyone.
Microsoft Viva is a proud sponsor of the HR Tech Conference. We invite you to stop by and experience firsthand how Microsoft Viva is transforming the employee experience by enabling customers on their change journeys with AI-powered Communications, Skilling, and Measurement solutions. Our team of experts will demonstrate the latest features and capabilities of Microsoft Viva apps: Glint, Insights, Pulse, Learning, Skills, Connections, Engage, and Amplify. You’ll learn how these tools can help you foster a culture of continuous improvement, improve employee engagement and productivity, and drive better business outcomes.
In addition to product demos, we’ll be hosting conversations at our booth, as well as a Viva Glint, Insights, and Pulse Customer Roundtable discussion. The Customer Roundtable discussion is your chance to engage with our product experts, ask questions, and gain valuable insights into how Microsoft Viva can support your organization’s transformation strategies. Contact jgonzales@microsoft.com to sign up for the Customer Roundtable (lunch included).
Don’t miss out on this invaluable opportunity to learn, connect, and grow. Register for the HR Tech Conference today and be sure to visit the Microsoft Viva booth. We look forward to seeing you there!
Bonus: Viva is offering a customer promo code (10183), which can be used for a free Expo Only Pass or $150 off the Basic or All-Access Pass.
Microsoft Tech Community – Latest Blogs –Read More
Can I generate code for STM32H7 Boards using the Embedded Coder Support Package?
Does MathWorks offer Support Packages for generating code using Embedded Coder for STM32H7 Boards?Does MathWorks offer Support Packages for generating code using Embedded Coder for STM32H7 Boards? Does MathWorks offer Support Packages for generating code using Embedded Coder for STM32H7 Boards? embedded, coder, stm32h7, stm32, stmicroelectronics MATLAB Answers — New Questions
Lost in the Cloud: Missing File After Saving
Hello everyone,
I came to you with the following problem.
Yesterday after working for a while on a word document i saved it using the one drive function.
I then closed the app as usual without any problem at all (more precisely the app didn’t tell me to save again or something like that).
This morning, I opened my computer and went to look for the same file on OneDrive. To my surprise, however, that document seems to have disappeared, or perhaps it would be better to say it appears not to have been saved at all.
I tried to follow other guides on similar problems but nothing worked out in the end.
What can I possibly do? Should I consider this document completely lost?
thank you in advance for the help
Have I nice day 🙂
Hello everyone, I came to you with the following problem. Yesterday after working for a while on a word document i saved it using the one drive function. I then closed the app as usual without any problem at all (more precisely the app didn’t tell me to save again or something like that). This morning, I opened my computer and went to look for the same file on OneDrive. To my surprise, however, that document seems to have disappeared, or perhaps it would be better to say it appears not to have been saved at all. I tried to follow other guides on similar problems but nothing worked out in the end. What can I possibly do? Should I consider this document completely lost? thank you in advance for the help Have I nice day 🙂 Read More
Conditional Formatting with inside IF statement
I have an Conditional Formatting statement. Working fine.
I need the following changed:
=CONCATENATE(“OWNER:”,LOT!B8,” ASSIGNED:”,LOT!C8)
I need the word “ASSIGNED” changed to “INTERRED” IF LOT!D8 has a date inside the cell. ?
Thanks
fordraiders
I have an Conditional Formatting statement. Working fine. I need the following changed:=CONCATENATE(“OWNER:”,LOT!B8,” ASSIGNED:”,LOT!C8)I need the word “ASSIGNED” changed to “INTERRED” IF LOT!D8 has a date inside the cell. ? Thanksfordraiders Read More
UI for custom font and color schemes in Office for macOS
Hello,
I am not 100% sure if this is the correct discussion space, but: until now there is still no user interface for macOS users to create a custom font or color scheme! On Windows it is so easy; on macOS you have to dig up weird directories and write an XML file. What gives?
Best,
Satrio
Hello,I am not 100% sure if this is the correct discussion space, but: until now there is still no user interface for macOS users to create a custom font or color scheme! On Windows it is so easy; on macOS you have to dig up weird directories and write an XML file. What gives?Best,Satrio Read More
ExchangeOnlineManagement v3.5.1 Breaks Application Authentication
We use and provide services that leverage the application authentication method of the ExchangeOnlineManagement PowerShell module. The latest stable version of the module, 3.5.1, breaks this functionality.
Additionally, any errors are unavailble as they are now behind a GDPR compliant error message:
OperationStopped: IDX12729: Unable to decode the header ‘[PII of type ‘System.String’ is hidden. For more details, see https://aka.ms/IdentityModel/PII.]’ as Base64Url encoded string.
There does not appear to be a way to disable the PII bit through the PowerShell Module to troubleshoot this either.
We have reverted to v 3.5.0 to continue to be able to use our current scripts and processes.
We use and provide services that leverage the application authentication method of the ExchangeOnlineManagement PowerShell module. The latest stable version of the module, 3.5.1, breaks this functionality.Additionally, any errors are unavailble as they are now behind a GDPR compliant error message: OperationStopped: IDX12729: Unable to decode the header ‘[PII of type ‘System.String’ is hidden. For more details, see https://aka.ms/IdentityModel/PII.]’ as Base64Url encoded string. There does not appear to be a way to disable the PII bit through the PowerShell Module to troubleshoot this either.We have reverted to v 3.5.0 to continue to be able to use our current scripts and processes. Read More
100% Kafka parity on Event Hubs: Kafka Streams and Kafka Transactions now in Public Preview
We are thrilled to announce the public preview of Kafka Streams and Kafka Transactions functionality in Azure Event Hubs in the Premium and Dedicated tier. With this, Event Hubs has now achieved 100% Kafka compatibility until Apache Kafka version 3.0 to further tap into the Apache Kafka ecosystem and empower customers who want to leverage the Apache Kafka APIs on Azure Event Hubs, a fully managed, real-time data ingestion service.
Kafka Streams is a client library for building applications and microservices that process data in real-time from multiple Kafka topics. Kafka Transactions enable you to produce and consume messages atomically across multiple partitions and topics in a Kafka cluster. With these be supported in Azure Event Hubs, it can act as a drop-in replacement to bring your Apache Kafka workloads to the cloud, with very simple configuration changes, as indicated in this migration guide.
Learn more
We invite you to try out the Kafka Streams and Kafka Transactions functionality in Azure Event Hubs in the Premium and Dedicated tier and share your feedback with us. Learn more about these features in the documentation listed below:
Apache Kafka Streams for Azure Event Hubs
Transactions in Apache Kafka for Azure Event Hubs
You can also check out the following resources to learn more about Azure Event Hubs and Kafka integration:
Azure Event Hubs for Apache Kafka
Migrate to Azure Event Hubs for Apache Kafka – Azure Event Hubs | Microsoft Learn
Microsoft Tech Community – Latest Blogs –Read More
plot magnitude data at location (x,y,z)
I can’t figure out how to plot magnitudes of a variable at different (x,y,z) locations. In effect, I need to plot a 4D plot, (x,y,z,value). I thought I’d be able to do a 3D plot and set the 4D as color scale or something like that, but I can’t figure how to do that.
Perhaps I’m over thinking this….but, I’d appreciate any help.
Thanks!
JorgeI can’t figure out how to plot magnitudes of a variable at different (x,y,z) locations. In effect, I need to plot a 4D plot, (x,y,z,value). I thought I’d be able to do a 3D plot and set the 4D as color scale or something like that, but I can’t figure how to do that.
Perhaps I’m over thinking this….but, I’d appreciate any help.
Thanks!
Jorge I can’t figure out how to plot magnitudes of a variable at different (x,y,z) locations. In effect, I need to plot a 4D plot, (x,y,z,value). I thought I’d be able to do a 3D plot and set the 4D as color scale or something like that, but I can’t figure how to do that.
Perhaps I’m over thinking this….but, I’d appreciate any help.
Thanks!
Jorge plotting, 3d plots MATLAB Answers — New Questions
Why do the results returned by calling the “simulate” function with a “creditDefaultCopula” object vary based on the order of the rows in the input data?
When using "creditDefaultCopula" from Risk Management Toolbox, why are simulation results different when the rows of the data input are in different order even with the same random seed for all simulations?When using "creditDefaultCopula" from Risk Management Toolbox, why are simulation results different when the rows of the data input are in different order even with the same random seed for all simulations? When using "creditDefaultCopula" from Risk Management Toolbox, why are simulation results different when the rows of the data input are in different order even with the same random seed for all simulations? creditdefaultcopula, simulation MATLAB Answers — New Questions
Sharepoint – page d’accueil
Bonjour,
Est-ce il possible de modifier une page d’accueil, mais sans que les changements soient effectifs immédiatement? J’aimerais faire des tests avant de rendre la nouvelle page d’accueil disponible.
Merci!
Kristina
Bonjour, Est-ce il possible de modifier une page d’accueil, mais sans que les changements soient effectifs immédiatement? J’aimerais faire des tests avant de rendre la nouvelle page d’accueil disponible. Merci! Kristina Read More