![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/14277100_1584188312621.jpeg)
Subhamoy Saha
Followers: 0 Following: 0
統計
All
Feeds
質問
How many timers can run parallely in MATLAB?
I have three different types of sensors connected to a single PC. I am using three different timers to read data from those sens...
4年以上 前 | 0 件の回答 | 0
0
回答回答済み
App UIAxes Zoom Control
As far I have understand, you are facing problem is the new plot appears in the axes limits for the previous zoom state. You ca...
App UIAxes Zoom Control
As far I have understand, you are facing problem is the new plot appears in the axes limits for the previous zoom state. You ca...
4年以上 前 | 2
回答済み
Fill areal between graphs
This may help you x = -pi:pi/10:pi; y=sin(x); y2=0.8*y; area(x,y,'Facecolor','r') hold on area(x,y2,'Facecolor',[1 1 1]) ...
Fill areal between graphs
This may help you x = -pi:pi/10:pi; y=sin(x); y2=0.8*y; area(x,y,'Facecolor','r') hold on area(x,y2,'Facecolor',[1 1 1]) ...
5年弱 前 | 0
回答済み
Drop Down Menu to GUI in Matlab. How to connect Drop Down menu to the Function and Callback
Please find below a sample. Hope you can work on that for other options. classdef app3_exported < matlab.apps.AppBase % ...
Drop Down Menu to GUI in Matlab. How to connect Drop Down menu to the Function and Callback
Please find below a sample. Hope you can work on that for other options. classdef app3_exported < matlab.apps.AppBase % ...
5年弱 前 | 0
回答済み
How to plot graph from mat file?
clc; clear all; close all; s = load('lai3.mat'); x=s.lai3(:,1); % s is having a field named lai3 y=s.lai3(:,2); plot(x,y)
How to plot graph from mat file?
clc; clear all; close all; s = load('lai3.mat'); x=s.lai3(:,1); % s is having a field named lai3 y=s.lai3(:,2); plot(x,y)
5年弱 前 | 1
| 採用済み
回答済み
How to automating plot axis labels?
Use the following lines. xlabel(['day-', inputname(1)], 'Interpreter', 'none' ); ylabel(['cases-', inputname(2)], 'Interpreter...
How to automating plot axis labels?
Use the following lines. xlabel(['day-', inputname(1)], 'Interpreter', 'none' ); ylabel(['cases-', inputname(2)], 'Interpreter...
5年弱 前 | 1
| 採用済み
回答済み
converting string data to numbers
Oxygen = cellfun(@str2num, Oxygen, 'UniformOutput',false)
converting string data to numbers
Oxygen = cellfun(@str2num, Oxygen, 'UniformOutput',false)
5年弱 前 | 0
回答済み
Renaming Excel Files Using MATLAB Code
Change the file extension according to your need. datafolder=uigetdir(); % files=dir(datafolder); % if you don't have any ...
Renaming Excel Files Using MATLAB Code
Change the file extension according to your need. datafolder=uigetdir(); % files=dir(datafolder); % if you don't have any ...
5年弱 前 | 1
回答済み
Taylor Series of e^x
clear clc fprintf('Solving e^x using Taylor Series\n'); x=input('x = '); n=30; i=0; f=1; while i<=n last_term=(x.^i...
Taylor Series of e^x
clear clc fprintf('Solving e^x using Taylor Series\n'); x=input('x = '); n=30; i=0; f=1; while i<=n last_term=(x.^i...
5年弱 前 | 1
| 採用済み
回答済み
Why 0.35 divide 0.001 return double, and 0.34 divide 0.001 return int.
Not sure why it is showing like that but the case is both are double. a=0.351/.001 whos a b=0.352/.001 whos b
Why 0.35 divide 0.001 return double, and 0.34 divide 0.001 return int.
Not sure why it is showing like that but the case is both are double. a=0.351/.001 whos a b=0.352/.001 whos b
5年弱 前 | 0
回答済み
clearing text filed in app when clicking in the text box
Numeric field needs a default number. It cannot be blank. As Mohammad Sami told, you can use the tooltip property to display hi...
clearing text filed in app when clicking in the text box
Numeric field needs a default number. It cannot be blank. As Mohammad Sami told, you can use the tooltip property to display hi...
5年弱 前 | 0
| 採用済み
回答済み
installation problem with R2019b
Disable your antivirus and try again. Seems a network firewall blocking problem.
installation problem with R2019b
Disable your antivirus and try again. Seems a network firewall blocking problem.
5年弱 前 | 0
回答済み
I would like to change the massflowrate when the statement is correct, could you help?
The problem is with the line you are changing values of massflowrate. You are making it logical condition rather assigning it a ...
I would like to change the massflowrate when the statement is correct, could you help?
The problem is with the line you are changing values of massflowrate. You are making it logical condition rather assigning it a ...
5年弱 前 | 0
| 採用済み
回答済み
Water Tank input that changes based on volume.
Please check with the following clear, clc V0 = 50; %initial volume (m^3) c0 = 0; %initial concentration Qin = ...
Water Tank input that changes based on volume.
Please check with the following clear, clc V0 = 50; %initial volume (m^3) c0 = 0; %initial concentration Qin = ...
5年弱 前 | 0
| 採用済み
回答済み
Importing txt files and using loops
Here I have tested with your J94.txt file filename = 'C:\Users\Desktop\J94.txt'; %% change filepath accordingly delimiter = ' ...
Importing txt files and using loops
Here I have tested with your J94.txt file filename = 'C:\Users\Desktop\J94.txt'; %% change filepath accordingly delimiter = ' ...
5年弱 前 | 0
回答済み
How to enter time if it is set to the following format
Use to get current time datestr(now,"HH:MM:SS")
How to enter time if it is set to the following format
Use to get current time datestr(now,"HH:MM:SS")
5年弱 前 | 0
回答済み
How can i load my c++ written dll ?
First ensure that you have C++ compiler installed and linked with MATLAB. If not, please refer to this link https://in.mathwor...
How can i load my c++ written dll ?
First ensure that you have C++ compiler installed and linked with MATLAB. If not, please refer to this link https://in.mathwor...
5年弱 前 | 0
質問
Legend for yyaxis at two different locations
I have a figure created with plotyy. I want to place legends near to their respective axes , i.e., at northeast for left y-axis ...
5年弱 前 | 1 件の回答 | 0
1
回答回答済み
Datatype problem and pointers for a .DLL
Yeah! I have returned with an answer this time. The error causes due to declration problem of this line DWORD handlesensor, LPC...
Datatype problem and pointers for a .DLL
Yeah! I have returned with an answer this time. The error causes due to declration problem of this line DWORD handlesensor, LPC...
約5年 前 | 1
回答済み
Datatype problem and pointers for a .DLL
I have IFD2421 sensor connected over TCP/IP and mine is working fine. You did the same thing and the error should not come. Sorr...
Datatype problem and pointers for a .DLL
I have IFD2421 sensor connected over TCP/IP and mine is working fine. You did the same thing and the error should not come. Sorr...
5年以上 前 | 0
質問
Multiple legend location in figure
Hi, I have a code similar to below where I want to put the legends at different location. This code is running well in 2014b but...
約6年 前 | 0 件の回答 | 0
0
回答質問
Only last legend command is working while using multiple legend command using plotyy
My code looks like this: n=-180:180; x=(pi/180).*n; y=sin(x); y2=sin(x).*cos(x); y3=cos(x); [ax h1 h2]=plotyy(n,y,n,y2) h...
約6年 前 | 1 件の回答 | 0